Skip to content

Instantly share code, notes, and snippets.

@stanwilsonjr
Last active December 12, 2015 00:38
Show Gist options
  • Save stanwilsonjr/4684779 to your computer and use it in GitHub Desktop.
Save stanwilsonjr/4684779 to your computer and use it in GitHub Desktop.
iframed Modernizr test
// This will add a class to the html tag if it is iframed
// https://github.com/Modernizr/Modernizr/commit/d48a2bf1b18b891c5647dcfca9cb2713688ccec2
<script type="text/javascript">
Modernizr.addTest('framed', function(){
return window.location != top.location;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment