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

HtmlIframeHyperlinkHtml Target

Html Problem Overview


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.

Html Solutions


Solution 1 - Html

I found the best solution was to use the base tag. Add the following to the head of the page in the iframe:

<base target="_parent">

This will load all links on the page in the parent window. If you want your links to load in a new window, use:

<base target="_blank">

Browser Support

Solution 2 - Html

Use target-attribute:

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

Solution 3 - Html

With JavaScript:

window.parent.location.href= "http://www.google.com";

Solution 4 - Html

You can use any options

in case of only parent page:

if you want to open all link into parent page or parent iframe, then you use following code in head section of iframe:

<base target="_parent" />

OR

if you want to open a specific link into parent page or parent iframe, then you use following way:

<a target="_parent" href="http://specific.org">specific Link</a>
<a  href="http://normal.org">Normal Link</a>

OR

in case of nested iframe:

If want to open all link into browser window (redirect in browser url), then you use following code in head section of iframe:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript">
	$(window).load(function(){
		$("a").click(function(){
			top.window.location.href=$(this).attr("href");
			return true;
		})
	})
</script>

OR

if you want to open a specific link into browser window (redirect in browser url), then you use following way:

<a  href="http://specific.org"   target="_top" >specific Link</a>

or

<a  href="javascript:top.window.location.href='your_link'">specific Link</a>
<a  href="javascript:top.window.location.href='http://specific.org'">specific Link</a>
<a  href="http://normal.org">Normal Link</a>

Solution 5 - Html

There's a HTML element called base which allows you to:

> Specify a default URL and a default target for all links on a page:

<base target="_blank" />

By specifying _blank you make sure all links inside the iframe will be opened outside.

Solution 6 - Html

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

Solution 7 - Html

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.

Solution 8 - Html

The most versatile and most cross-browser solution is to avoid use of the "base" tag, and instead use the target attribute of the "a" tags:

<a target="_parent" href="http://www.stackoverflow.com">Stack Overflow</a>

The <base> tag is less versatile and browsers are inconsistent in their requirements for its placement within the document, requiring more cross-browser testing. Depending on your project and situation, it can be difficult or even totally unfeasible to achieve the ideal cross-browser placement of the <base> tag.

Doing this with the target="_parent" attribute of the <a> tag is not only more browser-friendly, but also allows you to distinguish between those links you want to open in the iframe, and those you want to open in the parent.

Solution 9 - Html

If you are using iframe in your webpage you might encounter a problem while changing the whole page through a HTML hyperlink (anchor tag) from the iframe. There are two solutions to mitigate this problem.

Solution 1. You can use target attribute of anchor tag as given in the following example.

<a target="_parent" href="http://www.kriblog.com">link</a>

Solution 2. You can also open a new page in parent window from iframe with JavaScript.

<a href="#" onclick="window.parent.location.href='http://www.kriblog.com';">

Remember ⇒ target="_parent" has been deprecated in XHTML, but it is still supported in HTML 5.x.

More can be read from following link http://www.kriblog.com/html/link-of-iframe-open-in-the-parent-window.html

Solution 10 - Html

<a target="parent"> will open links in a new tab/window ... <a target="_parent"> will open links in the parent/current window, without opening new tabs/windows. Don't_forget_that_underscore!

Solution 11 - Html

Yah I found

<base target="_parent" />

This useful for open all iframe links open in iframe.

And

$(window).load(function(){
    $("a").click(function(){
        top.window.location.href=$(this).attr("href");
        return true;
    })
})

This we can use for whole page or specific part of page.

Thanks all for your help.

Solution 12 - Html

Try target="_top"

<a href="http://example.com" target="_top">
   This link will open in same but parent window of iframe.
</a>

Solution 13 - Html

   <script type="text/javascript"> // if site open in iframe then redirect to main site
		$(function(){
			 if(window.top.location != window.self.location)
			 {
				top.window.location.href = window.self.location;
			 }
		});
	</script>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionHaim EvgiView Question on Stackoverflow
Solution 1 - HtmlChris VasselliView Answer on Stackoverflow
Solution 2 - HtmlnnevalaView Answer on Stackoverflow
Solution 3 - HtmlyenssenView Answer on Stackoverflow
Solution 4 - HtmlAhosan Karim AsikView Answer on Stackoverflow
Solution 5 - HtmlvsyncView Answer on Stackoverflow
Solution 6 - HtmlGeeView Answer on Stackoverflow
Solution 7 - HtmlRyan McGrathView Answer on Stackoverflow
Solution 8 - HtmlAdelmarView Answer on Stackoverflow
Solution 9 - Htmluser1788142View Answer on Stackoverflow
Solution 10 - HtmlkrisjdView Answer on Stackoverflow
Solution 11 - HtmlRatan PaulView Answer on Stackoverflow
Solution 12 - HtmlAamir ShahzadView Answer on Stackoverflow
Solution 13 - HtmlSandeep SherpurView Answer on Stackoverflow