본문 바로가기
PROGRAM/JAVASCRIPT

iframe 크기 자종 조절

by 반화넬 2017. 9. 5.
반응형

<iframe name=iname style='width:100%' scrolling=no frameborder=0 src='http://www.daum.net' onLoad="iFrameHeight(this)"></iframe>


<script>

// iframe 내부 Div 에서 변화에 따른 resize

function iFrameHeight(){
 iFrameHeight2(document.getElementById("bChartIfr"));
}


function iFrameHeight(obj){
 if(obj.contentDocument){
  obj.height = obj.contentDocument.body.offsetHeight + 40;

 } else {
  obj.height = obj.contentWindow.document.body.scrollHeight;
 }
}

</script>





반응형