Ich habe folgenden Code gecodet aber er funktioniert nicht, was mache ich falsch???
<html>
<head>
<title>Zellen highlighten</title>
<script language="JavaScript">
<!--
function highlight(ID,Farbe1,Farbe2) {
document.getElementsById(ID).bgColor = Farbe1;
document.getElementsById(ID).bgColor = Farbe2;
}
//-->
</script>
</head>
<body onLoad="highlight()">
<table border="1">
<tr>
<td id="1" bgcolor="#ffffff" onMouseOver="highlight(1,#ffffff,#e1e1e1)">Punkt 1</td>
<td id="2" bgcolor="#ffffff">Punkt 2</td>
</tr>
</table>
</body>
</html>