Skip to content

Instantly share code, notes, and snippets.

@kraftner
Created January 22, 2016 16:26
Show Gist options
  • Save kraftner/fb2d46bb21b91592bea5 to your computer and use it in GitHub Desktop.
Save kraftner/fb2d46bb21b91592bea5 to your computer and use it in GitHub Desktop.
NoScript Debug Inside
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style class="cp-pen-styles">
#back {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="back">back</div>
<script>
var el = document.getElementById("back");
el.addEventListener("click", function( event ) {
console.log('iframe'+Math.random());
}, false);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment