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

Child window cannot open parent window

Status
Not open for further replies.

hansolo

IS-IT--Management
Feb 5, 2000
14
MY
The child window suppose to use the existing parent window and redirect the parent window to a new page but open a new window instead. All PCs that I tested using IE5. Interestingly it works few others but didn't work on other PC (open a new window).

I used the following script for the parent
self.name = "MyParentWindow"

and for child window

window.open('../home.cfm','MyParentWindow')

I couldn't understand, why the script behaves differently on different PC. Any help is much appreciated.

Thanks
 
use opener.location.href = '/home.html'instead of window.open. There's bugs in IE.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top