Hey, I have this code, the disclaimer-div is shown at the buttom off every page. But this doesn't work with netscape. Can someone help me with this?
<script>
function positionDisclaimer()
{
disclaimer.style.top = document.body.scrollHeight - disclaimer.offsetHeight;
}
</script>
<body onload='positionDisclaimer()'>
....
<div id='disclaimer' style='position:absolute; bottom: 0; width:98%; left: 1%'>just something here
</div>
The One And Only KryptoS
<script>
function positionDisclaimer()
{
disclaimer.style.top = document.body.scrollHeight - disclaimer.offsetHeight;
}
</script>
<body onload='positionDisclaimer()'>
....
<div id='disclaimer' style='position:absolute; bottom: 0; width:98%; left: 1%'>just something here
</div>
The One And Only KryptoS