Skip to content

Instantly share code, notes, and snippets.

@djo
Created December 13, 2011 10:25
Show Gist options
  • Save djo/1471570 to your computer and use it in GitHub Desktop.
Save djo/1471570 to your computer and use it in GitHub Desktop.
Autoheight iframe
// iframe auto-height
(function ($) {
$.fn.autoheight = function () {
return this.each(function () {
var iframe = $(this);
var height = iframe.contents().find('body').height() + 20;
iframe.height(height);
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment