Gusse
Код на основной странице:
CODE:<...>
<script language="JavaScript">
<!--
function mySize()
{
if (navigator.appName=='Netscape')
{
document.getElementById('iframeId').width=window.myIframe.document.body.offsetWidth;
document.getElementById('iframeId').height=window.myIframe.document.body.offsetHeight;
}
else
{
document.getElementById('iframeId').width=window.myIframe.document.body.scrollWidth;
document.getElementById('iframeId').height=window.myIframe.document.body.scrollHeight;
}
}
//-->
</script>
<...>
<iframe name=myIframe src=testpage.html width=100% height=100% frameborder=0 marginheight=0 marginwidth=0 scrolling=no id="iframeId">
<...> Код на странице testpage.html:
CODE:<html>
<head>
<...>
</head>
<body onload="parent.mySize();">
<...>
</body>
</html> |