<script language="javascript">
 function reSizeFrame(obj){
  var innerBody = obj.document.body;
  var innerHeight = innerBody.scrollHeight + innerBody.clientHeight;
  obj.style.height = innerHeight;
 }
</script>
</HEAD>

<BODY>
<iframe name='iframe0' src='http://www.naver.com' width="100%" frameborder="0" scrolling="no" vspace="0" onLoad="reSizeFrame(this);">
</iframe>

onLoad가 있었구나 파이어폭스 같은 경우 contentWindow를 얻어와야 한다는데 swing인가? rootPane이 생각남

+ Recent posts