Javascript parent page redirection from iframe.
- by Danil
Hello to all.
I need to implement parent page redirection from iframe. I know that it is impossible to do in different domains due to browsers security.
However I found that links have target attribute and tried to use it in the following way:
<a href="http://google.com" target="_top" id="testParentRedirect">someLink</a>
It works…