스크립트

아이프레임 모바일 버그 스크롤 제어

김청 2016. 6. 28. 16:23
//아이프레임 모바일 스크롤제어
 function calcHeight()
   {
    //find the height of the internal page
    var the_height=
    document.getElementById('the_iframe').contentWindow.
    document.body.scrollHeight;

    //change the height of the iframe
    document.getElementById('the_iframe').height=
    the_height;
   }
<★iframe width="100%" src="iframe_private.html" scrolling="no" id="the_iframe" onLoad="calcHeight();" height="1px" frameborder="0" ><★/iframe>