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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web browser sizing

Status
Not open for further replies.

jisoo22

Programmer
Apr 30, 2001
277
US
Does anyone know how to restrict a web browser window to 380 x 150 pixels? Just for the initial page at least. Pop-up windows after that can be regular size.

Thanks,
Jisoo22
 
Hey,
Give this a try
<script language=&quot;javascript&quot;>
function size(){
window.resizeTo(150,380)
return true
}
</script>

Then in the use this body tag <body onLoad=&quot;size()&quot; onResize=&quot;size()&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top