bleicher: id anlegen

Beitrag lesen

Grüße,
mein Typp - verzichte gar auf id - ich würde sowas wie

  
  
function zoomIn(element){  
element.style.width="200px";  
element.style.height="100px";  
}  
  
function zoomOut(element){  
element.style.width="150px";  
element.style.height="75px";  
}  

  
<img src="bild.jpg" onMouseDown="zoomIn(this)" onMouseUp="zomOut(this)" alt="bla" style="width:150px; height:75px">  
  

ohne gewähr - nciht ausprobiert
MFG
bleicher