블로그 이미지
좋은느낌/원철
이것저것 필요한 것을 모아보렵니다.. 방문해 주셔서 감사합니다..

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

Notice

    2008. 9. 2. 00:43 개발/JavaScript
    출처 : http://web20korea.com/205

    javascript :
    function FN_iframeAutoHeight(obj) {
     obj = typeof obj == 'string' ? document.getElementById(obj) : obj;
     obj.setExpression('height',iframename.document.body.scrollHeight);
    }
    html code :
    <IFRAME name="iframename" border=0 marginWidth=0 marginHeight=0 src="http://web20korea.com" frameBorder=0 width="100%" scrolling=no onload="FN_iframeAutoHeight(this)"></IFRAME>

    posted by 좋은느낌/원철