Skip to content

Instantly share code, notes, and snippets.

@abrjagad
Last active August 29, 2015 14:16
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 abrjagad/802da76c9e5a6063f9d6 to your computer and use it in GitHub Desktop.
Save abrjagad/802da76c9e5a6063f9d6 to your computer and use it in GitHub Desktop.
adjust the width and height of iframe
function autoResize(id) {
var newheight;
var newwidth;
var id = document.getElementById(id);
newheight = id.contentWindow.document.body.scrollHeight;
newwidth = id.contentWindow.document.body.scrollWidth;
id.height = newheight + "px";
id.width = newwidth + "px";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment