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!

how do i center a pop-up window?

Status
Not open for further replies.

debrac

IS-IT--Management
Jan 9, 2001
48
AU
anyone have any javascript code for centering a popup window?

 
this works in ie.

<script>
y = new Number(screen.height);
x = new Number(screen.width);
x = (x/2) - 150;
y = (y/2) - 150;
newWin = window.open(&quot;unf.htm&quot;, &quot;newWin&quot;, &quot;height=300,width=300&quot;);
newWin.moveTo(x, y)
</script> adam@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top