|
|
<script type="text/javascript">
<!--
// Jeff
// www.huntingground.freeserve.co.uk
function chkHeight(){
window.frames["myiframe"].document.body.style.overflow="hidden"
iframeHeight=window.frames["myiframe"].document.body.scrollHeight // iframe content height
remoteDivHeight=parseInt(document.getElementById("remotediv").style.height) // remotediv height
document.getElementById("tempdiv").style.height = iframeHeight - remoteDivHeight
}
function scrollFrame(){
window.frames["myiframe"].document.body.scrollTop = document.getElementById("remotediv").scrollTop
}
// onload="chkHeight()" // add to the opening BODY tag
// -->
</script>
<iframe id="myiframe" name="myiframe" src="yourpage.htm" style="position:absolute; left:30px; top:100px; width:330px; height:200px; border:2px dotted blue"></iframe>
<DIV id="div1" style="position:absolute; left:590px; top:320px; width:43px; height:100px; overflow:auto; z-index:5; border:2px dotted red" onscroll="chkHeight()">
<div id="tempdiv" style="width:1; height:1"></div>
</DIV>