Internet Explorer does not support the data uri scheme for iframe urls (see http://msdn.microsoft.com/en-us/library/cc848897%28v=vs.85%29.aspx). Other browsers do. As browser detection is loaded with testing and future-proofing problems, I want to use feature detection to work around this issue.
So: how can I detect whether or not a browser supports the data uri scheme for iframes?
If the
onload
event of theiframe
with adata:
URI fires, the browser supportsdata:
URIs. Otherwise, the browser doesn't supportdata:
URIs.The example code also checks if scripting is allowed from a
data:
URI by sending a message from theiframe
to the parent window.Working code
Usage
If you want more advanced control, you can call it like this:
Demo
Play with it on JSFiddle.