Hello,
I am trying to change the bgcolor of a TD when the user moves the mouse over it.
So I have:
<TD onMouseOver="TDColor(this,'#808080');">
and the function
function TDColor(a,b) {
this=a;
a.bgcolor=b;
}
and it doesn´t work, what is wrong?
Thanks,
im
I am trying to change the bgcolor of a TD when the user moves the mouse over it.
So I have:
<TD onMouseOver="TDColor(this,'#808080');">
and the function
function TDColor(a,b) {
this=a;
a.bgcolor=b;
}
and it doesn´t work, what is wrong?
Thanks,
im