Newbie Question: How do I make my webpage start Maximized

liunx

Guest
I want my webpage to start up maximized, and I don't know how to do it. Any help appreciated! Thanks.<!--content--><script language="JavaScript" type="text/JavaScript"><br />
<br />
window.resizeTo(width, height);<br />
<br />
</script><br />
<br />
That should resize the window to an absolute value, but as far as I know, there is no way of making the window maximized. The problem with this script is that people have different resolutions and this will appear different sizes to some people.<!--content--><script><br />
window.open("frame2.html","","fullscreen=yes,personal=no,scrolls=no");<br />
</script><br />
<br />
you will have to spawn this from a seperate window, it will give you a ful window though <br />
<br />
also have to have a document.close as it does not have any other way to exit except for atl+F4<!--content-->Originally posted by chwhale <br />
I want my webpage to start up maximized, <br />
<br />
Just remember, anyone with 1280+ resolution will absolutely hate you for doing it.<br />
Especially if you webpage only covers a small 600x400 area in the full screen window.<br />
<br />
Good browsers rememberd the users prefered size for new windows automatically.<!--content-->
 
Back
Top