Badmate
Badmate

Reputation:

Hide/Disable TitleBar Mozilla FireFox using Javascript

How to disable the Minimize button of FireFox Browser or How to hide titlebar of FireFox Browser. I am using Window.Open to Open Window in fullscreen Mode using javascript

Upvotes: 1

Views: 8721

Answers (4)

Fireuser
Fireuser

Reputation:

try the experimental add-on "Hide Caption"

Upvotes: 0

Ritesh Kumar
Ritesh Kumar

Reputation:

Try This one http://www.ghacks.net/2008/11/19/setup-firefox-to-use-minimal-screen-estate/ It will help you to hide title bar

Upvotes: 1

Rimas Kudelis
Rimas Kudelis

Reputation: 564

Actually, it seems to be possible to specify these features. An excerpt from window.open Reference:

  • dialog can be set to yes or no to indicate whether or not the maximize and minimize buttons will display in the titlebar in Firefox, Mozilla, and Netscape only.
  • minimizable can be set to yes or no to indicate whether or not the minimize buttons will display in the titlebar when dialog=yes in Firefox, Mozilla, and Netscape only. So, just use code like this:

    var newWin = window.open('http://www.google.com/','google','dialog=yes,minimizable=no');

Anyway, don't overuse this feature – it's designed explicitly with dialogs in mind. IMO, combining it with full-screen is kinda dirty.

Upvotes: 2

Tamas Czinege
Tamas Czinege

Reputation: 121314

I am afraid this is impossible to do, and rightly so. I would be pretty annoyed if a webpage tried disable the minimize button of my browser.

Upvotes: 4

Related Questions