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

I have an iframe embedded in the page. Why we need to set the perent location Href from the iframe, any reason for that?

self.parent.location.href = blah blah blah;
share|improve this question

2 Answers

That's usually a frame breaker technique.

Usually something like this:

if(self != top)top.location.href=someUrl;
share|improve this answer
can you explain in more detailed way, I am new to this area? – user496949 Jun 10 '12 at 10:42

As it's possible to put an iframe tag inside your page's body, you use top to manipulate the main window. See:

Main page

<!--This is the main page-->
<html>
    <head>
        <script>
        alert(window.top.location.href);//The main page's URL
        alert(window.self.location.href);//The main page's URL
        alert(window.top.location.href);//The main page's URL
        </script>
    </head>
    <body>
        <iframe src="myFrame.html"></iframe>
    </body>
</html>

myFrame.html

<html>
    <head>
        <script>
        alert(window.location.href);//"myFrame.html"
        alert(window.self.location.href);//"myFrame.html"
        alert(window.top.location.href);//The main page's URL
        </script>
    </head>
    <body>
    </body>
</html>
share|improve this answer

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.