Skip to content

Instantly share code, notes, and snippets.

@benglass
Created August 25, 2014 21:52
Show Gist options
  • Save benglass/6228b6e5697443cc66b9 to your computer and use it in GitHub Desktop.
Save benglass/6228b6e5697443cc66b9 to your computer and use it in GitHub Desktop.
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="foo">My foo</div>
<iframe src="testiframe.html" width="100%" height="400"></iframe>
</body>
</html>
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
hi
<script type="text/javascript">
var parentDocument = window.parent.document;
parentDocument.getElementById('foo').innerHTML = 'Hello from the inner frame!';
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment