Is there any good way to detect when a page isn't going to display in a frame because of the X-Frame-Options header? I know I can request the page serverside and look for the header, but I was curious if the browser has any mechanism for catching this error.

link|improve this question

3  
As fas as I know and after some research, it's currently not possible to find it out from client side. I've tried loading an iFrame src using a "protected" URL, wrapping it with a try/catch but it didn't work. If you happen to find a solution, please share it. Thank you. – bernie cc Nov 16 '11 at 10:21
feedback

3 Answers

Ok, this is a bit old question, but here's what I found out (it's not a complete answer) for Chrome/Chromium.

the way do detect if a frame pointing to a foreign address has loaded is simply to try to access its contentWindow or document.

here's the code I used:

element.innerHTML = '<iframe class="innerPopupIframe" width="100%" height="100%" src="'+href+'"></iframe>';
myframe = $(element).find('iframe');

then, later:

try {
    var letstrythis = myframe.contentWindow;
} catch(ex) {
    alert('the frame has surely started loading');
}

the fact is, if the X-Frame-Options forbid access, then myFrame.contentWindow will be accessible.

the problem here is what I called "then, later". I haven't figured out yet on what to rely, which event to subsribe to find when is the good time to perform the test.

link|improve this answer
Thanks for the research – Newtang Apr 21 at 6:34
feedback

The only thing I can think of is to proxy an AJAX request for the url, then look at the headers, and if it doesn't have X-Frame-Options, then show it in the iframe. Far from ideal, but better than nothing.

link|improve this answer
Cross-domain issues are going to stop this from working, unfortunately. Unless of course you can find or make yourself a proxy that copies over the headers. – Ben Clayton Nov 29 '11 at 10:48
Yup, you're totally right; stupid oversight on my part. I updated my answer. Thanks for pointing this out! – Newtang Nov 29 '11 at 18:39
feedback

At least in Chrome, you can notice the failure to load because the iframe.onload event doesn't trigger. You could use that as an indicator that the page might not allow iframing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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