Hi,
übergebe this an die Methode:
Im html steht dann also:
<tr onmouseover="tr_over(this)" onmouseout="tr_out(this)">
Jetzt weiß ich aber nicht, wie ich das richtige tr-tag ansprechen soll.
function tr_over(tr) {
tr.style.backgroundColor='#FFECAA';
}
function tr_out(tr) {
tr.style.backgroundColor='#D6D7DE';
}
Oder machs wie Struppi gesagt hast. Dann gehts aber nicht im IE 6.
Gruß!