본문 바로가기
Programming/Javascript

자바스크립트로 iframe 리사이징 하기

by Berasix 2010. 11. 30.
반응형

자바스크립트를 이용해 iframe을 리사이즈하는 방법

[ parent script on top ]

<iframe id="centerfrm" src="iframe_page" frameborder="0" width="100%" scrolling="no" ></iframe>

[ iframe script on bottom(in iframe_page) ]

<script>
 parent.document.getElementById("centerfrm").style.height = this.document.body.scrollHeight;
 parent.scroll(0,0);
</script>
728x90

댓글