개발/JavaScript
[스크랩]iframe height를 자동으로 변경해주기
좋은느낌/원철
2008. 9. 2. 00:43
출처 : http://web20korea.com/205
javascript :
javascript :
function FN_iframeAutoHeight(obj) {html code :
obj = typeof obj == 'string' ? document.getElementById(obj) : obj;
obj.setExpression('height',iframename.document.body.scrollHeight);
}
<IFRAME name="iframename" border=0 marginWidth=0 marginHeight=0 src="http://web20korea.com" frameBorder=0 width="100%" scrolling=no onload="FN_iframeAutoHeight(this)"></IFRAME>