29Jul/090
How to automatically maximize the browser window when a visitor accesses your website
->
Here is how you can automatically maximize the browser window when a visitor accesses your website.
Put the code below within your site's source code. If you dont know how to implement this code into your site, please goto how to implement the code to your website
Code:
<!-- this script is from www.manycodes.com --> <!-- START OF Window Auto Maximize DHTML --> <!-- SUMMARY BRIEF This code will automatically maximize the browser window when the page is loaded. --> <!-- Put this code inside of your <HEAD> tag. --> <script language="JavaScript1.2"> <!-- top.window.moveTo(0,0); if (document.all) { top.window.resizeTo(screen.availWidth,screen.availHeight); } 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> <!-- END OF Window Auto Maximize DHTML --> <font face="Tahoma"><a target="_blank" href="http://www.manycodes.com/category/java/javascript-codes/"><span style="font-size: 8pt; text-decoration: none">JavaScript Free Code</span></a></font>