Skip to content

Instantly share code, notes, and snippets.

@ghing
Last active October 12, 2015 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ghing/81a2bc6cec1e0c3c8532 to your computer and use it in GitHub Desktop.
Save ghing/81a2bc6cec1e0c3c8532 to your computer and use it in GitHub Desktop.
Iframe event test
<html>
<body>
<h1>This is an iframe</h1>
<script>
console.log("Iframe loaded")l;
window.addEventListener('resize', function() {
console.log('resize');
});
</script>
</body>
</html>
<html>
<head></head>
<body>
<iframe src="iframe.html">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment