Mar 8, 2004 #1 un1k Technical User Mar 8, 2004 30 CA Hi I am wondering how to automatically size a window on the load. For example I want my first page (index.htm) loads at 640x480.
Hi I am wondering how to automatically size a window on the load. For example I want my first page (index.htm) loads at 640x480.
Mar 8, 2004 #2 kaht Programmer Aug 18, 2003 4,156 US use resizeTo: Code: <html> <head> <title>Blah</title> </head> <body onload='self.resizeTo(640,480)'> <form name=blahForm> This is a window resize test. </form> </body> </html> -kaht Upvote 0 Downvote
use resizeTo: Code: <html> <head> <title>Blah</title> </head> <body onload='self.resizeTo(640,480)'> <form name=blahForm> This is a window resize test. </form> </body> </html> -kaht
Mar 8, 2004 Thread starter #3 un1k Technical User Mar 8, 2004 30 CA thanks a bunch. Upvote 0 Downvote