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!

Refreshing window.opener's parent window as well!

Status
Not open for further replies.

kloner

Programmer
May 15, 2000
79
AU
Hi guys,

I have 3 windows open ....

1. Main (MAIN)
2. click link from main and it pops up a window (SUB_A)
3. click link on SUB_A and it opens another window (SUB_B)

Now when i hit OK button on SUB_B i refresh the SUB_A window by doing the following.

window.opener.refreshSelf();

Now I am having heaps of trouble trying to also refresh the SUB_A's parent window (MAIN) as well.

Any help ASAP would be fantastic!

Regards,
kloner
 
you should be able to do window.opener.window.opener or window.opener.parent or parent.window.opener or parent.parent to get back (all of those should work) -Greg :-Q

flaga.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top