Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
The parent window, in itself, could be an IFrame, too. Since the accepted answer addresses the top window, I suggest you change your question a bit. – Ron Klein Oct 10 '12 at 19:33

8 Answers

up vote 70 down vote accepted
window.top.location.href = "http://www.site.com"; 

As stated previously, will redirect the parent iframe. One thing to bear in mind is that both the website, and the site contained in the iframe need to be on the same domain for this to work, or you'll get an access denied exception.

So, if the site is 'www.site.com', and the iframe is 'iframe.site.com', in both pages you'll need to put:

document.domain = "site.com"
share|improve this answer
Do just the domains have to match? Or do domains, protocols, and ports have to match? – Alex Kahn Oct 6 '11 at 21:50
I've only done this on a regular port 80 http website. – MIP Nov 18 '11 at 15:09
You are awesome @MIP – Robot Jun 27 '12 at 15:04
you should consider location.asign(newURI) location object method :) – f00bar Jan 25 at 19:34
window.top.location.href = "http://site.com";

window.top refers to the window object of the page at the top of the frames hierarchy.

share|improve this answer
6  
window.top.location.href property can't be updated from Iframe, it throws access denied execption. It can only be executed when you are testing on localhost – Ummar Jun 5 '10 at 15:40
2  
@Ummar: I would add that this works when the parent an the iframe has same domain, same port (same origin policies), it throws access denied exception when they're different, to prevent security breaches – Vimvq1987 Apr 4 '12 at 3:11

I found that <a href="..." target="_top">link</a> works too

share|improve this answer
Works for me in asp.net – charles sun Nov 9 '11 at 10:27
While the selected answer is correct, I think this is a better answer for the question's intent. Also, it will work for the people who have JS disabled. – Michael Jan 30 at 15:59
+1 as well this is the best answer as there is no JavaScript involved :) works for me – PHPSeeker May 2 at 6:22

or an alternative is the following (using document object)

parent.document.location.href = "http://site.com";
share|improve this answer
1  
That solution is Firefox specific. One should just use parent.location.href = .... developer.mozilla.org/en/document.location – Kay Jul 12 '12 at 23:42

It is possible to redirect from an iframe, but not to get information from the parent.

share|improve this answer

just use top.location. parent.location won't work in FF and Safari.

share|improve this answer
This is already stated in an answer and a comment.... – cale_b Oct 10 '12 at 19:19

This will solve the misery.

<script>parent.location='http://google.com';</script>
share|improve this answer
Won't work on FF and Safari, as stated below. – Cory Kendall Oct 11 '12 at 1:08

Try using

window.parent.window.location.href = 'http://google.com'
share|improve this answer
Won't work on FF and Safari, as stated. – Jonathon Hill Dec 11 '12 at 16:37
@JonathonHill, This code works Fine with Mozilla Firefox. – Chirag Gohel Dec 13 '12 at 9:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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