Hi Peter,
Und wie haben die das bei dem A-Z&-9 Index gemacht??? Dass die ganze tabellenzelle farbig wird?
steht doch alles im Quelltext:
HTML:
<td onmouseout="tabelle_raus(this);" onmouseover="tabelle_drueber(this);">
<a href="..." class="...">A</a>
</td>
Javascript:
function tabelle_drueber(quelle) {
quelle.style.cursor = 'hand';
quelle.bgColor = hinteraktiv;
quelle.children.tags('A')[0].style.color = textaktiv;
}
function tabelle_raus(quelle) {
quelle.style.cursor = 'hand';
quelle.bgColor = hinternormal;
quelle.children.tags('A')[0].style.color = textnormal;
}
Einfacher ist folgende Methode:
<td onmouseover="this.bgColor='blue'" onmouseout="this.bgColor='white'"> </td>
LG Orlando