ifrmae 자동 리사이즈 jQuery 입니다. 정보
jQuery ifrmae 자동 리사이즈 jQuery 입니다.본문
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">
</script>
<iframe class="resize" src="/" frameborder="0" scrolling="no"></iframe>
<script type="text/javascript">
$(function(){
$("iframe.resize").load(function(){
var frame = $(this).get(0);
var doc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
$(this).height(doc.body.scrollHeight);
//$(this).width(doc.body.scrollWidth); // 너비도 자동적용하려면 주석 제거
});
});
</script>
추천
1
1
댓글 0개