EKKi: Problem mit Bild-Referenz bei dynamsichen Buttons

Beitrag lesen

Mahlzeit,

und den Code so ändert

<a href="../../../index.htm"
   onmouseover="Bildwechsel("bild1", Highlight1)"
   onmouseout="Bildwechsel("bild1", Normal1)">
   <img name="bild1" src="button1.gif"
   width="130" height="30" border="0" alt="Home"></a><br>


>   
> sollte es gehen  
  
Tut es nicht. Man sollte den Code schon so ändern:  
  
~~~html
  
<a href="../../../index.htm"  
   onmouseover="Bildwechsel('bild1', Highlight1)"  
   onmouseout="Bildwechsel('bild1', Normal1)">  
   <img name="bild1" src="button1.gif"  
   width="130" height="30" border="0" alt="Home"></a><br>  

;-)

MfG,
EKKi