반응형
<script type="text/javascript">
function resizeHeight(id)
{
var the_height = document.getElementById(id).contentWindow.document.body.scrollHeight;
document.getElementById(id).height = the_height + 30;
}
</script>
<iframe src="#" id="commentFrame"frameborder="0" onLoad="resizeHeight('commentFrame');"></iframe>
출처] XE 지식인
function resizeHeight(id)
{
var the_height = document.getElementById(id).contentWindow.document.body.scrollHeight;
document.getElementById(id).height = the_height + 30;
}
</script>
<iframe src="#" id="commentFrame"frameborder="0" onLoad="resizeHeight('commentFrame');"></iframe>
출처] XE 지식인
반응형
'Programing > javascript' 카테고리의 다른 글
jquery 자식창에서 부모창으로 값 전달. (0) | 2011.02.08 |
---|---|
jquery 핸들링 1 [Table 핸들링][펌] (0) | 2010.08.30 |
jquery input의 value 값 알아오기 (1) | 2010.04.12 |
문자열 잘라서 배열에 넣기 (0) | 2010.03.31 |
javascript opener 오류 "엑세스가 거부 되었습니다." (2) | 2010.03.26 |
간단한 ajax + php (5) | 2010.01.04 |
javascript onload (0) | 2009.12.10 |
지정된 영역안의 내용만 프린트 출력 (1) | 2009.06.03 |