[Javascript] Opening a Fullscreen Window

Paul Novitski paul at novitskisoftware.com
Thu Sep 23 14:05:14 CDT 2004


>Dinuj Nath escreveu:
>I need to open a popup window fullscreen. How do I do it?

At 11:25 AM 9/23/2004, Flavio Gomes wrote:
>my_Window = window.open('URL','WindowName','fullscreen = yes');


Tweak:  No spaces permitted in the properties list:
         my_Window = window.open('URL', 'WindowName', 'this=yes,that=no');

Splat: "fullscreen" isn't listed in any of these reference:

Gecko: http://www.mozilla.org/docs/dom/domref/dom_window_ref76.html#1019331
Netscape: 
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/window.html#1202731
Devguru: http://www.devguru.com/Technologies/ecmascript/quickref/win_open.html

It is listed only in the Microsoft reference and therefore I'm sure won't 
work outside Internet Explorer:
MSDN: 
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp

Paul  





More information about the Javascript mailing list