1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20: | <html>
<head>
<title>bla</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
function changeImage(imgName, imgSrc)
{
if (document.images)
{
document.images[imgName].src = imgSrc;
}
}
</script>
</head>
<body>
<a href="bla.html" onmouseover="changeImage('xxx','bild2.gif')" onmouseout="changeImage('xxx','bild1.gif')">link</a>
<img src="bild1.gif" width="100" height="100" alt="" id="xxx" />
</body>
</html> |