Hej alle jeg har et lille problem med mit iframe autoheight script. (Som jeg har downloadet)
- <script language="JavaScript">
- function calcHeight() {
- //find the height of the internal page
- var the_height=
- document.getElementById('iframe').contentWindow.
- document.body.scrollHeight;
-
- //change the height of the iframe
- document.getElementById('iframe').height=
- the_height;
- }
- </script>
-
- <iframe
- id="iframe"
- src="upload_me/index.php"
- frameborder="0"
- scrolling="no"
- style="overflow: hidden;"
- allowtransparency="true"
- width="100%"
- onLoad="calcHeight();"
- >
- <p>Please enable iframe support to use this feature.</p>
- </iframe>
Problemet er at hvis jeg skifter til en side hvor height var mindre end forige, så vil den ikke blive mindre.