Skip to content

Instantly share code, notes, and snippets.

@u840903
Created November 7, 2016 12:56
Show Gist options
  • Save u840903/89dcd6b2c286a32c09fba5b1a069494a to your computer and use it in GitHub Desktop.
Save u840903/89dcd6b2c286a32c09fba5b1a069494a to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body style='height: 600px; background-color: #fafafa;'>
<div>IFRAME</div>
<script>
var setHeight = function() {
parent.postMessage({iframeHeight: document.documentElement.clientHeight}, '*');
};
window.onresize = function() {
setHeight();
};
setHeight();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment