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.
or an alternative is the following (using document object)
Try using
It is possible to redirect from an iframe, but not to get information from the parent.
Redirect iframe in parent window by iframe in the same parent:
This will redirect the main window to the index page. Thanks