J
José Joye
Hello,
I'm trying to update the size of a layer within my page as soon as the
window is resized. I look at the Jscript ref guide. However, I keep
receiving error when executing the script fired at window resize
(f_resize_bottom()). It tells me that document.layers["layer_bottom"] is
null or not an object.
Any help welcome
José
Here is a code snippet:
<html>
<head>
<script>
<!--
function f_resize_bottom()
{
document.layers["layer_bottom"].width=
document.layers["layer_bottom"].window.innerWidth
}
//-->
</script >
</head>
<body onresize=f_resize_bottom()>
<div style="position: absolute; width:100%; height: 43px; z-index: 1000;
left: 2px; top: 200px" id="layer_bottom" name="layer_bottom">
<table border="0" cellpadding="0" cellspacing="0" style="margin-top:
8px" background="../images/fond_bandeau_bleu.gif">
<tr height="35px">
<td width="150" nowrap>
<p class="CRight">© 2004 All rights reserved<br>
My Company</td>
<td width="620"><img border="0" src="../images/bandeau_bleu.gif"
height="35" width="620"></td>
<td width="100%"></td>
</tr>
</table>
</div>
</body>
I'm trying to update the size of a layer within my page as soon as the
window is resized. I look at the Jscript ref guide. However, I keep
receiving error when executing the script fired at window resize
(f_resize_bottom()). It tells me that document.layers["layer_bottom"] is
null or not an object.
Any help welcome
José
Here is a code snippet:
<html>
<head>
<script>
<!--
function f_resize_bottom()
{
document.layers["layer_bottom"].width=
document.layers["layer_bottom"].window.innerWidth
}
//-->
</script >
</head>
<body onresize=f_resize_bottom()>
<div style="position: absolute; width:100%; height: 43px; z-index: 1000;
left: 2px; top: 200px" id="layer_bottom" name="layer_bottom">
<table border="0" cellpadding="0" cellspacing="0" style="margin-top:
8px" background="../images/fond_bandeau_bleu.gif">
<tr height="35px">
<td width="150" nowrap>
<p class="CRight">© 2004 All rights reserved<br>
My Company</td>
<td width="620"><img border="0" src="../images/bandeau_bleu.gif"
height="35" width="620"></td>
<td width="100%"></td>
</tr>
</table>
</div>
</body>