반응형
<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>
반응형