Skip to content

Instantly share code, notes, and snippets.

@marijnh
Created November 22, 2010 10:58
Show Gist options
  • Save marijnh/709814 to your computer and use it in GitHub Desktop.
Save marijnh/709814 to your computer and use it in GitHub Desktop.
<html>
<body>
<script>
var frame = document.createElement("IFRAME");
frame.src = "javascript:false";
document.body.appendChild(frame);
var win = frame.contentWindow;
win.document.open();
win.document.write("<html><body>XX<script>document.write('YY');<\/script></body></html>");
win.document.close();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment