Hi
Ich kenn mich mit JS nicht besonders gut aus aber wenn ich mit der Maus auf nem Icon gehe, werden ALLE icons umgeändert. Ich möcht das aber für jedes Bild individuell haben.
Code
<script type="text/javascript">
function mp() {
document.getElementById("ret").src="images/mp/rethover.GIF"
document.getElementById("play").src="images/mp/playhover.GIF"
document.getElementById("forw").src="images/mp/forwhover.GIF"
}
</script>
Code
<img id="ret" style="width: 20px;" src="images/mp/ret.GIF" onmouseover="mp()">
<img id="play" style="width: 20px;" src="images/mp/play.GIF" onmouseover="mp()">
<img id="forw" style="width: 20px;" src="images/mp/forw.GIF" onmouseover="mp()">
Wie mache ich das?