iframe 그누보드 연동
- 09-03
- 4,239 회
- 2 건
안녕하세요
iframe으로 그누보드 연동했는데요
오토 리사이즈가 안됩니다..ㅜㅜ
소스나 방법을 알려주실 수 있나요?
-
-
function resizeIframe(iframeID) {
if(self==parent) return false; /* 페이지가 iframe 내에 있는지 확인 */
else if(document.getElementById&&document.all) /* Sniffs for IE5+.*/
var FramePageHeight = framePage.scrollHeight + 10; /* framePage
is the ID of the framed page's BODY tag. The added 10 pixels prevent an
unnecessary scrollbar. 10px 추가로 준거는 필요없이 스크롤이 생성되는걸 막기 위해서란 설명입니다*/
parent.document.getElementById(iframeID).style.height=FramePageHeight;
/* "iframeID" is the ID of the inline frame in the parent page. */
}
<body id="framePage" onload="resizeIframe('idTopFrame')">
(body 의 selector 이름을 "framePage" 로 줘야 작동하겠죠?)- 12-09-06
-