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

Close Child window 2

Status
Not open for further replies.

guitardave78

Programmer
Joined
Sep 5, 2001
Messages
1,294
Location
GB
Hi all.
If i open a new window like this
newWin = window.open('about:blank','Uploading','width=200,height=100');
should i not be able to close it from the parent like this

window.Uploading.close()

It is driving me mad lol

}...the bane of my life!
 
You can reestablish a link to the existing child window by using window.open, no url, and the same target name:
Code:
newWin = window.open('','Uploading');
newWin.close();

Adam
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top