Hello,
I have build a tree view forum, I have used the iframe tag to import it to my wordpress blog .
I have a script that determine the size of the iframe on load:
<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>
The problem with the script is that the forum(tree view forum) only shows topics. I have another script that displays the contents of any issue only while clicking (Void). In actual the contents of each issue is charging ahead - but the resize function of the Iframe script not see it.
How do I fix it, that the size of the Iframe will change automatically?
Thanks alot


