Thread Tabellenzellen hovern: Rollover-Effekt mit CSS (10 answers)
Opened by format_c at 2003-11-25 23:29

x-man
 2004-04-18 00:08
#25313 #25313
User since
2003-09-11
67 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
<script language="javascript">
function textYes(ziel){
ziel.style.backgroundColor="#ddddff";
}
function textNo(ziel){
ziel.style.backgroundColor="white";
}
</script>
<td onMouseover="textYes(this)" onMouseout="textNo(this)">

View full thread Tabellenzellen hovern: Rollover-Effekt mit CSS