How to force link from iframe to be opened in the parent window

Viewed 522700

I need to open the link in the same parent page, instead of open it in a new page.

note : The iframe and parent page are the same domain.

14 Answers

Use target-attribute:

<a target="_parent" href="http://url.org">link</a>

Try target="_parent" attribute inside the anchor tag.

As noted, you could use a target attribute, but it was technically deprecated in XHTML. That leaves you with using javascript, usually something like parent.window.location.

Related