Click to See Complete Forum and Search --> : Window object


les
01-21-2003, 08:23 AM
Hello everyone,

Does anybody know whether it is possible to refer to a parent window from popup one?

To give an example: when my website is downloading a new window pops up, which offers an option to choose another language. Once a language is chosed, I would like new pages to be opened in the parent window, i.e in the window which triggered popup. Any ideas how I can do it?

Many thanks in advance,


:)

pyro
01-21-2003, 08:39 AM
Originally posted by les
Does anybody know whether it is possible to refer to a parent window from popup one?window.opener is how your reference a parent window.

Originally posted by les
Once a language is chosed, I would like new pages to be opened in the parent window, i.e in the window which triggered popup.I believe window.opener.location="http://www.yoursite.com/english"; is how you'd do that...

wraighsj
01-21-2003, 10:25 AM
you can access all aspects of the parent using "top.opener."

les
01-21-2003, 03:10 PM
pyro, wraighsj,

Thanks for your help. It works! :)