Dynamisk iframe højde
hvorfor vil den ikke blive støre min iframe, jeg bruger et javascript til at auto definere højden derpå alt efter hvor meget indhold der blir lagt ind i iframen...http://www.carlmartin.com/forum.htm
men min iframe blir ikke større, her er koden...
<html>
<head>
<title>PROFILE</title>
<script type="text/javascript">
function resizeIframe() {
i = document.getElementById('dinIframe')
i.style.height=i.contentWindow.document.body.scrollHeight
}
</script>
</head>
</html>
<body onload="resizeIframe()" bgcolor="#000000">
<center>
<iframe width="700" name="dinIframe" frameborder="0" src="forum/default.asp" scrolling="no"></iframe>
</center>
</body>
</html>
