admin管理员组文章数量:1356949
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 BadmateBadmate4 Answers
Reset to default 4I 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"
本文标签: HideDisable TitleBar Mozilla FireFox using JavascriptStack Overflow
版权声明:本文标题:HideDisable TitleBar Mozilla FireFox using Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744031396a2578973.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论