Skip to content

Instantly share code, notes, and snippets.

@omo
Last active January 4, 2016 05:19
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 omo/8574605 to your computer and use it in GitHub Desktop.
Save omo/8574605 to your computer and use it in GitHub Desktop.
<!DOCTYPE>
<script>
window.Document.prototype.hello = function() {
alert("Hello!");
}
</script>
<h1>Call document.hello() for me.</h1>
<script>
function test()
{
window.myFrame.document.hello();
}
</script>
<iframe name="myFrame" src="https://rawgithub.com/omo/8574605/raw/94552e0669a6dec3dab7485109691cd158bacba8/decorated-body.html">
</iframe>
<input type="button" onclick="test()" value="Press Me!">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment