재우니의 블로그

iframe 을 resize 해주는 jQuery 구문

 

<script type='text/javascript'>
  $(function() {
   $('#test2').load(function() {
    $(this).css("height", $(this).contents().find("body").height() + "px");
   });
  });
 </script>

 

 

 <iframe id="test2" width="100%" src ="test.htm" />