Hi all,
I'm having quite a time resizing a set of iframes that load based on pulling images from a database driven by user selection from dropdowns. So far I've tried fairly trivial approaches, such as:
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>
and in the body create the iframe tag:
<iframe width="700" id="the_iframe"
onLoad="calcHeight();"
src="built by java servlet... "
scrolling="NO"
frameborder="1">
</iframe>
to no avail. Whatever is present at loading ends up being the height (as one might expect) Any ideas?
I'm having quite a time resizing a set of iframes that load based on pulling images from a database driven by user selection from dropdowns. So far I've tried fairly trivial approaches, such as:
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>
and in the body create the iframe tag:
<iframe width="700" id="the_iframe"
onLoad="calcHeight();"
src="built by java servlet... "
scrolling="NO"
frameborder="1">
</iframe>
to no avail. Whatever is present at loading ends up being the height (as one might expect) Any ideas?