Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Opening a Fullscreen Window


  • From: paul at novitskisoftware.com (Paul Novitski)
  • Subject: [Javascript] Opening a Fullscreen Window
  • Date: Thu Sep 23 14:05:28 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