<div id="google" class="ui-tabs-panel" style="display: block;">
<iframe id="fre" name="fre" src="http://www.google.com/search?q=xxxx">
<html>
.....
</html>
</iframe>
</div>
I want to make the iframe height equal to the html height
like this
document.getElementById("fre").style.height.value =
document.getElementById("???").style.height();
How ...