HTML & Javascript

iframe auto resizing

KJSR71 2017. 6. 7. 15:27

body = document.querySelector("body > iframe").contentDocument.body;

html = document.querySelector("body > iframe").contentDocument.documentElement;


document.querySelector("body > iframe").style.width = Math.max( body.scrollWidth, body.offsetWidth, html.clientWidth, html.scrollWidth, html.offsetWidth ) + "px";

document.querySelector("body > iframe").style.height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ) + "px";