Hi guys
First time posting here. Have been enjoying all the resources available to us, very helpful.
My problem:
Recently started learning css / java - i have a web page with an iframe on the index pages within a div tag, which then loads all other pages into this iframe.
The thing is i require the iframe to adjust its height size according to the content loaded.
After lots of searching a have come across only one that worked for me, however it only seems to work in IE and not firefox and the like.
Here's my striped down version of the code.
can someone help? or rewritten it using a better method?
In Index page
<head>
<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>
<style type="text/css">
<!--
body {
background-color: #627CE6;
}
.style1 {color: #999999}
-->
</style>
</head>
<body>
<div class="centerall" id="masthead">
<div id="globalNav"></div>
<div id="sectionLinks">
<a href="pages/home.html" target="the_iframe">Home</a >
<a href="pages/team.html"aboutus.html" target="the_iframe">The Team</a>
<a href="pages/Projects.html"projects.html" target="the_iframe">Projects</a>
<a href="pages/services.html" target="the_iframe">Services</a>
<a href="pages/Contact.html" target="the_iframe">Contact Us</a>
</div>
<div id="content">
<div id="iframe">
<iframe name="the_iframe" onload="calcHeight();" src="pages/home.html"
width="800" height="500" scrolling="no" allowtransparency="true"
frameborder="0"> If you can see this, your browser doesn't understand iFRAME
technology. Please make sure your browser is up to date.<br />
Refer to this<a href="pages/help.html" target="blank"> Help Page </a> for more
details. </iframe>
</div>
<div id="siteInfo"> Bla Bla </div>
</div>
</div>
</body>
</html>
One of the pages
<bodycontent>
<div id="Homepage">
bla bla
</div>
Help is very appreciated
Regards
Solway