HTML
아이프레임 자동 사이즈조절
creat1ve
2017. 5. 16. 17:45
반응형
// IFRAME 리사이즈
function ifr_resize(obj) {
var ch = obj.contentWindow.document.body.scrollHeight;
obj.style.height = ch;
}
var ch = obj.contentWindow.document.body.scrollHeight;
obj.style.height = ch;
}
// 사용법
<iframe src="#" width="500" height="300" scrolling="no" align="left" hspace="0" vspace="0" onLoad="ifr_resize(this);"></iframe>
반응형