Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

size windows

Status
Not open for further replies.

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.
 
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

banghead.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top