FaB: Bilderhöhe bei NS 4.x

hallo,

bei dem folgenden script sollte es beim laden der seite die bilderhöhen mit zufallszahlen verändern. mit netscape 6 und internet explorer 4+ funktioniert es einwandfrei doch mit netscape 4.x geht es einfach nicht :-( wie kann mann die höhen der bilder bei ns 4.x verändern??

vielen dank für deine hilfe

fabian

hier noch das script -->

<html>
<head>

<script language="javascript">
<!--

function equalize()

{

for (i = 1; i < 15; i++)
  {
    imgname = "eq_" + String(i);
    rnd_numb = Math.round(Math.random()*14) + 2;
    document[imgname].height = rnd_numb;
  }

}

//-->
</script>

</head>

<body topmargin=0 leftmargin=0 onload="equalize();">

<table border=0 cellpadding=0 cellspacing=0 width=68 valign=bottom align=left height=16><tr>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_1"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_2"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_3"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_4"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_5"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_6"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_7"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_8"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_9"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_10"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_11"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_12"></td>
<td valign=bottom width=5 align=left><img src=img/blue.gif width=3 height=16 name="eq_13"></td>
<td valign=bottom width=3 align=left><img src=img/blue.gif width=3 height=16 name="eq_14"></td>
</tr></table>

<a href="javascript:equalize()" color=yellow>dslkfdsfaad</a>

</body>
</html>

  1. hi,

    document[imgname].height = rnd_numb;

    afaik "read only" in NC 4.x.
    Könntest Du nicht alternativ divs resizen, oder das clipping von divs manipulieren, wenn Du so ein equalizer basteln moechtest?

    hth

    Gruesse  Joachim