最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

HideDisable TitleBar Mozilla FireFox using Javascript - Stack Overflow

programmeradmin1浏览0评论

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

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

Share Improve this question asked Oct 10, 2008 at 9:34 BadmateBadmate
Add a ment  | 

4 Answers 4

Reset to default 4

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.

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./','google','dialog=yes,minimizable=no');

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

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

try the experimental add-on "Hide Caption"

发布评论

评论列表(0)

  1. 暂无评论