What JavaScript do I need to use to redirect a parent window from an iframe?
I want them to click a hyperlink which, using JavaScript or any other method, would redirect the parent window to a new URL.
|
What JavaScript do I need to use to redirect a parent window from an iframe? I want them to click a hyperlink which, using JavaScript or any other method, would redirect the parent window to a new URL. |
||||
As stated previously, will redirect the parent iframe. One thing to bear in mind is that both the website, and the site contained in the iframe need to be on the same domain for this to work, or you'll get an access denied exception. So, if the site is 'www.site.com', and the iframe is 'iframe.site.com', in both pages you'll need to put:
|
|||||||||
|
|
|||||||||
|
|
I found that |
|||
|
or an alternative is the following (using document object)
|
|||||
|
|
It is possible to redirect from an iframe, but not to get information from the parent. |
|||
|
|
|
just use |
||||
|
|
|
This will solve the misery.
|
|||
|
|
|
Try using
|
|||||
|
|
IFrame, too. Since the accepted answer addresses the top window, I suggest you change your question a bit. – Ron Klein Oct 10 '12 at 19:33