Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nickfishman/9826872 to your computer and use it in GitHub Desktop.
Save nickfishman/9826872 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
iframe {
margin-top:10000px;
}
</style>
</head>
<body>
<iframe></iframe>
<script>
document.location = '#test';
setTimeout(function (){
var iframe = document.querySelector('iframe');
iframe.contentDocument.open();
iframe.contentDocument.write('hi');
iframe.contentDocument.close();
}, 1);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment