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.
feedback
|
|
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:
then, later:
the fact is, if the X-Frame-Options forbid access, then 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. | |||
|
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. | |||||
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. | |||
|
feedback
|