Hi,
how do i manage to get the href color change when the mouseover is on its parent td?
thanks a lot!
Chaning HREF color on TD mouseover
Moderator: General Moderators
Re: Chaning HREF color on TD mouseover
ok, done by myself with jquery, hope it helps someone!
$("#menu td#id1 a").css("color","red");
$("#menu td#id1 a").css("color","red");
Re: Chaning HREF color on TD mouseover
Unless you're coding for IE6 & lower, you can do this in CSS:
Code: Select all
#menu td:hover a{ color:red; }Real programmers don't comment their code. If it was hard to write, it should be hard to understand.