Skip to content

Instantly share code, notes, and snippets.

@valueof
Created September 7, 2011 22:14
Show Gist options
  • Save valueof/1201958 to your computer and use it in GitHub Desktop.
Save valueof/1201958 to your computer and use it in GitHub Desktop.
Internet Explorer 8 doesn't have querySelector inside of an iframe
<iframe id="hey"></iframe>
<script>
var hey = document.getElementById("hey");
alert(document.querySelector);
hey.contentWindow.document.write('<html><scr' + 'ipt>alert(document.querySelector);</scr' + 'ipt></html>');
hey.contentWindow.document.close();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment