Click to See Complete Forum and Search --> : full screen javascript


Ambrrose
02-13-2003, 10:56 AM
I have some Javascript for fullscreen openning. First I have regular window with button. When I press the button I get the other window openned fullscreen.
Is it possible when I start any html document that it appears instantly in fullscreen mode (without clicking a button in some other window!)?

Zach Elfers
02-13-2003, 11:07 AM
No, but you can resize the window to try to imitate fullscreenness:

<body onload="window.resizeTo(w,h);window.moveTo(0,0);">

Ambrrose
02-13-2003, 11:11 AM
Where do I have to put that script?