IFRame 높이를 자동으로 도큐먼트 크기에 맞게 조정하는 함수입니다.
<script language="javascript">
function calcHeight(FrameName)
{
 
  var the_height= document.getElementById(FrameName).contentWindow.document.body.scrollHeight;
document.getElementById(FrameName).height=the_height;
}
</script>

예)
<iframe id="IFRAME" src="somepage.html" width="100%" onLoad="calcHeight('IFRAME')"></iframe>

동작 브라우저 : IE,FF,Netscape,Opera
===============================================

+ Recent posts