alternatif olarak şu şekildede yapılabilinir
Kod:
<HTML>
<head>
<title>Biolight - iframe(autoWidth & autoHeight)</title>
</head>
<body>
<center>
<a href="sayfa1.HTML" target="myiframe">Sayfa1</a> / <a href="sayfa2.HTML" target="myiframe">Sayfa2</a>
<br />
<iframe name="myiframe" src="sayfa1.HTML" scrolling="no" frameborder="1" width="1" height="1"></iframe>
</center>
<script for="myiframe" event="onload">
document.all.myiframe.style.width="1px";
document.all.myiframe.style.height="1px";
document.all.myiframe.style.width=parent.myiframe.document.body.scrollWidth;
document.all.myiframe.style.height=parent.myiframe.document.body.scrollHeight;
</script>
</body>
</HTML>