|
|
| Author |
Message |
Blaq
Joined: 27 Feb 2004 Posts: 45
|
Posted: Mon Mar 01, 2004 9:25 am Post subject: Auto Maximize Page |
|
|
Simply insert the below anywhere inside the <head> section of your page:
<script language="JavaScript1.2">
<!--
/***********************************************
* Auto Maximize Window Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for this script and 100's more.
***********************************************/
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> |
|
| Back to top |
|
 |
sam Banned
Joined: 01 Mar 2004 Posts: 51 Location: IL
|
Posted: Mon Mar 01, 2004 1:17 pm Post subject: |
|
|
Blaq-- can you please put your code in the code tags?  _________________
 |
|
| Back to top |
|
 |
macabist Banned
Joined: 01 Mar 2004 Posts: 35
|
Posted: Mon Mar 01, 2004 2:05 pm Post subject: |
|
|
| thx! |
|
| Back to top |
|
 |
|