Skip to content

Instantly share code, notes, and snippets.

@lastguest
Forked from ziadoz/iframe.html
Created December 25, 2013 22:37
Show Gist options
  • Save lastguest/8127631 to your computer and use it in GitHub Desktop.
Save lastguest/8127631 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<title>iFrame</title>
</head>
<body>
<!-- Page Content -->
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
// Resize Parent Window's Corresponding iFrame.
$(window).on('resize', function() {
if (window.self != window.top) {
$(parent.document).find('iframe').each(function() {
if (this.contentWindow.document == window.document) {
$(this).css({ height: $('body').height() + 'px', width: '100%' });
}
});
}
});
</script>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<title>iFrame</title>
</head>
<body>
<iframe src="iframe.html" frameborder="0" scrolling="no"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment