Skip to content

Instantly share code, notes, and snippets.

@westonganger
Created September 28, 2021 23:33
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 westonganger/444efd36a4701ea98a4175d7ac185c27 to your computer and use it in GitHub Desktop.
Save westonganger/444efd36a4701ea98a4175d7ac185c27 to your computer and use it in GitHub Desktop.
Auto IFRAME Height
// AUTOMATIC IFRAME HEIGHT
document.querySelector('iframe#my-iframe').addEventListener('load', function(){
this.style.height = this.contentWindow.document.body.offsetHeight + "px";
this.style.width = '100%';
this.style.maxWidth = '1200px';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment