게시글 드레그바 뜨는 현상 해결법 아시나요 정보
게시글 드레그바 뜨는 현상 해결법 아시나요본문
댓글 전체
에러가나는 부분을 링크를 걸어주세요.
코딩을 어떻게 하셨는지 알아야...~
코딩을 어떻게 하셨는지 알아야...~
zzrltk1101.dothome.co.kr 입니다.. 뭐가문제인지 잡아주시면 정말 감사하겠습니다.... ㅜㅜ 게시판전체가저러네요

iframe을 사용 하셨군요.
iframe에 ID를 ifrm으로 지정하시구요, write.skin.php를 열어서 적당한 곳에 아래 자바스크립트를 넣어 보세요.
제가 사용하는 것인데 iframe의 높이를 문서의 높이에 맞춰주는 코드입니다.
function fix_doc_height() {
$("#ifrm", parent.document).height(50);
try{
if($.browser.msie) aHeight = 20;
else aHeight = 40;
$("#ifrm", parent.document).height($(document).height()+aHeight);
}catch(e) {
parent.document.all.ifrm.style.height = document.clientHeight;
}
}
$(document).ready(function() {
fix_doc_height();
});
iframe에 ID를 ifrm으로 지정하시구요, write.skin.php를 열어서 적당한 곳에 아래 자바스크립트를 넣어 보세요.
제가 사용하는 것인데 iframe의 높이를 문서의 높이에 맞춰주는 코드입니다.
function fix_doc_height() {
$("#ifrm", parent.document).height(50);
try{
if($.browser.msie) aHeight = 20;
else aHeight = 40;
$("#ifrm", parent.document).height($(document).height()+aHeight);
}catch(e) {
parent.document.all.ifrm.style.height = document.clientHeight;
}
}
$(document).ready(function() {
fix_doc_height();
});