Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an application that has a certain page -- let's call it Page A. Page A is sometimes a top-level page, but also sometimes is embedded as an iframe within page B. All pages come from the same server and there are no cross-domain issues.

I have a greasemonkey script that runs on page A. How can the greasemonkey script detect whether page A is within the iframe context or not?

share|improve this question
Would you just look for at the parent for frames and see if they exist ? – 76mel May 29 '09 at 8:53

4 Answers

up vote 59 down vote accepted

Looking at frame length breaks down generally if page A itself has frames (I know this might not be the case for this specific instance). The more reliable and meaningful test would be:

if (window!=window.top) { /* I'm in a frame! */ }
share|improve this answer
Can you explain? Is this because a.parent can equal a? – Cheekysoft May 29 '09 at 9:33
5  
yes, exactly so - .top and .parent can point to the same object as .self (and in fact it would possibly be clearer to test window.self != window.top) – annakata May 29 '09 at 9:59
This didn't work for me inside a Firefox extension, but I found a different solution: stackoverflow.com/questions/326069#7769187 – magnoz Oct 14 '11 at 14:39
Does not seem to work on IE8. – Eneko Alonso Sep 27 '12 at 21:28
I confirm, for covering also IE8 you have to use window.parent.frames.length – Marek Kowalski Dec 14 '12 at 10:49

The predicate

(window.parent.frames.length > 0)

will tell you just what you want.

share|improve this answer
what a cool site ! +1 for that – 76mel May 29 '09 at 8:55
1  
Just don't forget to do it after ;0) – Artem Barger May 29 '09 at 9:10
This approach gives you false positive if you nest another iframe on the page you run this check on. – Marek Kowalski Apr 25 at 10:07
if (top === self) { not in a frame } else { in a frame }

From How to identify if a webpage is being loaded inside an iframe or directly into the browser window?

share|improve this answer

Use window.frameElement and check if it is not null and if its nodeName is "IFRAME".

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.