100% IFrame Content
enter this into the <head> section of the parent
<script language="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;
}
//-->
</script>
Then call the iframe where you want it ..
<iframe src="contentpage.html" id="the_iframe" onLoad="calcHeight();" id="main" height="1"></iframe>
|