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!

Position of popup window??

Status
Not open for further replies.

anyideas

Programmer
May 2, 2002
127
GB
Hi All.

Is there a way to set the position of a popup window??

I've got this so far:

window.open("subforms/popNewContact.asp","newContact","resizable=no,width=700,height=100")

Cheers in advance

Mark
 

window.open("popNewContact.asp","newContact", "resizable=no,width=700,left=200,top=100,height=100")

 
You just need to put this in the new window it opens:

window.moveTo(100,100)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top