<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>
$(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>