html 소스

<iframe width="700" id="the_iframe" onload="calcHeight();" src="testing_page.shtml" scrolling="NO" frameborder="1" height="1"></iframe>

javascript 소스

function calcHeight()
{
  //find the height of the internal page
  var the_height = document.getElementById('the_iframe').contentWindow.document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('the_iframe').height = the_height;
}


'javascript' 카테고리의 다른 글

팝업창 띄우기  (0) 2012.09.26
프린트 영역 설정  (0) 2012.09.13
radio 선택에 따른 스타일 활성/비활성  (0) 2012.09.13
팝업창닫기 링크  (0) 2012.09.13
뒤로가기  (0) 2012.09.13