iframe이 로딩될때 현재프레임의 스크롤바값을 가져와서 창크기로 변환한다.

(테이블안에 iframe삽입시 스크롤바 생성안되게 할때 유용)

ex)

<script language='javascript'>

function resizeIframe(fr) {
fr.setExpression('height',inFrame//프레임ID.document.body.scrollHeight);
fr.setExpression('width',inFrame.document.body.scrollWidth);
}

</script>

..

..

<body>

 <iframe id=inFrame//프레임ID설정 src=memberRegistPersonal.html name=main_in marginwidth='0' marginheight='0' topmargin='0' scrolling='no' frameborder='0'  ALLOWTRANSPARENCY="true" onload='resizeIframe(this);' >
 </iframe> 

</body>

</html>

+ Recent posts