Guten Morgen
Es ist doch absolut simpel, aber ich schaff es einfach nicht. Bei MousOver soll eine Tabellenzelle eine andere Farbe erhalten und beim anklicken nochmals eine andere, die sich beim MouseOver nicht mehr ändert.
Bitte helft mir, Gruss Roli
Es ist doch absolut simpel, aber ich schaff es einfach nicht. Bei MousOver soll eine Tabellenzelle eine andere Farbe erhalten und beim anklicken nochmals eine andere, die sich beim MouseOver nicht mehr ändert.
Bitte helft mir, Gruss Roli
HTML:
<html>
<head>
<title>Tabelle</title>
<style type="text/css">
<!--
.hand { cursor: hand}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<script type="text/javascript">
<!--
function TRKlick()
{
this.tr.FrageTR.bgcolor == '#FF0000';
if (this.tr.FrageTR.bgcolor == '#FF0000') onMousOver="this.tr.FrageTR.bgcolor = '#FF0000'";
if (this.tr.FrageTR.bgcolor == '#FF0000') onClick="this.tr.FrageTR.bgcolor = '#E7E7E7'";
}
function TROver()
{
if (this.tr.FrageTR.bgcolor == '#E7E7E7') onMousOver="this.tr.FrageTR.bgcolor = '#CCCCCC'";
}
//-->
</script>
<table width="62%" border="1">
<tr name="FrageTR" onMouseOver="TROver()" onClick="TRKlick()" bgcolor="#E7E7E7">
<td class="hand"> </td>
<td class="hand"> </td>
<td class="hand"> </td>
</tr>
</table>
</body>
</html>