Skip to content

Instantly share code, notes, and snippets.

@micc83
Created June 23, 2014 17:01
Show Gist options
  • Save micc83/30d05ef6336b8d4e35f7 to your computer and use it in GitHub Desktop.
Save micc83/30d05ef6336b8d4e35f7 to your computer and use it in GitHub Desktop.
Set iframe height based on content
jQuery('iframe.inpagedemo').load(function () {
var iframe = jQuery(this);
jQuery(window).resize(function() {
iframe.height(iframe[0].contentWindow.document.body.scrollHeight + 40);
});
jQuery(window).trigger('resize');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment