본문 바로가기

Web Progreming

[ HTML ] iframe 자동 높이 조절

$(document).ready(function(){
$("#board_IFM").load(function(){
alert($(this.contentDocument).find('body').height());
$("#iframe_src").attr('value',$(this.contentDocument).find('body').height());

var iHeight=($(this.contentDocument).find('body').height());
$(this).height(iHeight);
})
})

 <iframe frameborder='0' id='board_IFM' name='board_IFM' style='width:791px;' scrolling="no" src="경로"></iframe>

아.. 삽질 좀 했네..  잘 써먹어야 할텐데..ㅋㅋ