<!-- 인덱스 페이지 -->
<script>
function exec_content_frame_resize(w,h) {
var frm = document.getElementById('content_iframe');
frm.style.width = w + 'px' ;
frm.style.height = h + 'px' ;
}
</script>
<iframe id='content_iframe' style='width:500px;height:30px;' src="1.html"></iframe>

 

 

<!-- 불러와질 페이지 -->
<script>

// 페이지 로딩완료시
function on_init() {
var w = document.body.scrollWidth ;
var h = document.body.scrollHeight ;
parent.exec_content_frame_resize(w,h) ; }

//다른페이지로 이동하기전
function on_dist() { parent.exec_content_frame_resize(1,1) ; //사이즈를 0으로 할경우 IE에선 아예 아이프레임이 사라짐. }

</script>
<body onload='on_init()' onunload='on_dist()'><A HREF="1.html">1</A>...

<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>