iframe resize 함수
<script>
<!--
function resize_frame(obj) {
var obj_document = obj.contentWindow.document;
if(obj_document.height) {
obj.style.height = obj_document.height;
obj.style.width = obj_document.width;
} else {
obj.style.height = obj_document.body.scrollHeight;
obj.style.width = obj_document.body.scrollWidth;
}
}
//-->
</script>
위에다가 살포시 복사해서 붙여 넣으시고
onload='resize_frame(this)' 추가 하시면 됩니다.
예제 코드 ex)
<iframe src="" frameborder=0 scrolling="no" onload='resize_frame(this)'></iframe>
<script>
<!--
function resize_frame(obj) {
var obj_document = obj.contentWindow.document;
if(obj_document.height) {
obj.style.height = obj_document.height;
obj.style.width = obj_document.width;
} else {
obj.style.height = obj_document.body.scrollHeight;
obj.style.width = obj_document.body.scrollWidth;
}
}
//-->
</script>
위에다가 살포시 복사해서 붙여 넣으시고
onload='resize_frame(this)' 추가 하시면 됩니다.
예제 코드 ex)
<iframe src="" frameborder=0 scrolling="no" onload='resize_frame(this)'></iframe>
'개발 > javascript Tip' 카테고리의 다른 글
아이피 주소인지 아닌지 체크하는 함수 (0) | 2011.12.03 |
---|---|
상태표시줄 링크 없애기 (0) | 2011.12.03 |
구글맵처럼 큰 이미지를 분할해서 보는 자바스크립트 (0) | 2011.12.03 |
스크립트 한 줄로 IE6 죽이기 (0) | 2011.12.03 |
상태표시줄 링크 없애기 (0) | 2011.12.03 |