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.

link|improve this question

feedback

5 Answers

up vote 54 down vote accepted

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" />
link|improve this answer
Works perfectly!! – Syntax Error Oct 19 '11 at 23:09
Beautiful ! Working like a charm ! – David Bélanger Dec 1 '11 at 2:48
How does this fare cross-browser? – Charlie S Jan 23 at 20:00
According to W3 Schools, the base tag should be supported in all modern browsers. – Chris Vasselli Jan 24 at 21:53
feedback

Use target-attribute:

<a target="_parent" href="http://url.org">link</a>
link|improve this answer
i try this , is open in new window – Haim Evgi Jun 24 '09 at 11:52
+1 from me, base target="_parent" works but target="_parent" has never failed for me! – user903601 Mar 14 at 5:18
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
i try this , is open in new window – Haim Evgi Jun 24 '09 at 11:52
1  
Try target="_top". The iframe might contain nested iframes? Or the actual link is opened by javascript on onclick event? – Gee Jun 24 '09 at 12:44
i have tried this but was opened in new window – Haim Evgi Jun 24 '09 at 13:07
feedback

There's a DOM Object called <Base /> which : "Specify a default URL and a default target for all links on a page:"

<base target="_blank" />

by speifing "_blank" you make sure all links inside the iframe will be opened outside.

link|improve this answer
What browser support this? – PsychoDad Feb 13 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.