Javascript:
inFrame = true;
try {
if(window.top == self) {
inFrame = false;
}
} catch (err){}
try {
if(window.parent.location == self.location){
inFrame = false;
}
} catch (err){}
This is a piece of javascript code I use to detect whether my library is inside an iframe.
1 out of 100% of requests report that my library is inside an iframe which I think is not possible.
Is there a possibility that this code to fail [report true on false or vice versa]?
From access log [I log every such iframe requests]
- I found that it happens in all modern browsers [ie 6-9, chrome, ff, safari] from user agent string.
- I couldn’t make any sense out of referrer because they are same as my publisher site.
- In some cases I found for same referrer, same url requested & same client ip my library had been once inside an iframe & not in other. This made me doubt the above code.
Will there be any difference while window or document is being loaded in the properties [self, location, top, parent] I use to check? Because my script loads and executes synchronously mostly before the document is ready or window is completely loaded and that does the iniframe test to proceed further.
You know most modern browsers allow you to “View Frame” right? As in, view the frame content without the parent. That’s an entirely plausable answer for 3. (I do it all the time).
A plausible cause of 1 and 2 is that
selfis not really defined in javascript therefore may not always be equal towindow. You should therefore be checkingwindowor better yetwindow.selfnotselflike Özgür suggests.