Skip to content

Instantly share code, notes, and snippets.

@pveyes
Last active November 8, 2016 18:03
Show Gist options
  • Save pveyes/ef527bf0240100115ce7b1e00bc01e64 to your computer and use it in GitHub Desktop.
Save pveyes/ef527bf0240100115ce7b1e00bc01e64 to your computer and use it in GitHub Desktop.
document.querySelectorAll('iframe').forEach(ifr => {
// use onload property because we need to get the height
// after all content is fully loaded
ifr.onload = function () {
ifr.style.height = ifr.contentWindow.document.body.scrollHeight + 'px';
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment