티스토리 뷰
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";
'HTML & Javascript' 카테고리의 다른 글
html5 기본틀 (0) | 2015.10.12 |
---|---|
정규식 테스트 (0) | 2015.06.01 |
Ajax를 위한 간단한 JS 함수. (0) | 2015.05.27 |
Array 타입의 프로토타입으로 inArray 기능 추가 (0) | 2015.05.27 |