Paul: OnMouseOver

Beitrag lesen

soo...

es gibt sicher eine weitaus bessere lösung aber probier die mal:

<html>
<head>
<script language="JavaScript1.2">
<!--
function flashit(){
myexample.style.borderColor="#00FFAF"
}
function nix(){
myexample.style.borderColor="#FF7F00"
}
//-->
</script>
</head>
<body text="#00FFAF" bgcolor="#000000">
<table bordercolor="#FF7F00" border="1" id="myexample" onmouseover="flashit()" onmouseout="nix()">
<tr>
 <td> sg</td>
 <td> sdg</td>
</tr>
<tr>
 <td> sdg</td>
 <td> sdg</td>
</tr>
</table>
</body>
</html>

ciao