View Full Version : Maximize Window on Load


Shaneo
06-04-2003, 02:32 AM
Can someone please help me:(! Sometimes when i visit certian websites my broswser automaticly maxamize the window on load.. Anyone know how i could do that on my website? Thanks :D

Lynn
06-04-2003, 02:41 AM
http://www.dynamicdrive.com/dynamicindex8/automax.htm :)

cute_angel10490
06-04-2003, 02:42 AM
put in the <head> section, here's the code:

<HEAD>
<script language="JavaScript1.2">
<!--

top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.avail Height);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->
</script>

Shaneo
06-04-2003, 02:56 AM
Thanks for that :D It worked :D

cute_angel10490
06-04-2003, 11:47 PM
Your Welcome :)