본문 바로가기
script

iframe size 동적으로 맞추기

by [김경민]™ ┌(  ̄∇ ̄)┘™ 2013. 4. 27.
728x90

* iframe.jsp

 

<script type="text/javascript">
function isLoad() {
    var frameName = window.name;
    var frameHeight = document.body.scrollHeight;

    try {
         parent.document.getElementById(frameName).style.height = frameHeight + "px";
    } catch(e) {}
 }

</script>

<body onLoad="isLoad()">
================================================================================

* read.jsp

<iframe name="frameName" id="frameName" src="iframe.jsp" scrolling="no">

728x90

댓글