아이프레임 게시판
본문
<script type="text/javascript">
function resize_frame(id) {
var frm = document.getElementById("embeded-content");
function resize() {
frm.style.height = "auto"; // set default height for Opera
contentHeight = frm.contentWindow.document.documentElement.scrollHeight;
frm.style.height = contentHeight + 300 + "px"; // 23px for IE7
}
if (frm.addEventListener) {
frm.addEventListener('load', resize, false);
} else {
frm.attachEvent('onload', resize);
}
}
resize_frame('embeded-content');
</script>
<iframe id="embeded-content" width="100%" height="1100" frameborder="0" marginwidth="0" scrolling="no" src="http://cwlilaedu.kr/bbs/board.php?bo_table=aleum1"></iframe>
아이프레임으로 갤러리 게시판을 넣었는데 view페이지에서 잘리네요 ㅜㅜ
height가 자동으로 되는 소스 없나요?
답변을 작성하시기 전에 로그인 해주세요.