I have the following code:
<tr><td class="style3">test</td></tr>
and
$("tr").hover(
function () {
$(this).css("background-color","#d9e8cd");
$(this).css("font-weight","bold");
$(this).children().css("color","#222222 !important");
},
function () {
$(this).css("background-color","");
$(this).css("font-weight","");
$(this).children().css("color","#4b4a4a");
}
);
The problem is that the text colour will not change, i tried specifying the tr but it wont work so I assumed targeting the td would make it work because of the style3 class which specifies a colour.
How can I make it so that the colour of the text changes when the tr is hovered over?
This is an online demo http://jsfiddle.net/B7dMd/
children()perhaps will be "faster" ;-) – zerkms Dec 27 '12 at 23:20!importantcan override an inline style. But if you add!importantto thestyle(like this), that wins. – T.J. Crowder Dec 27 '12 at 23:24findtraverses all children within, including children of children. Whilechildrenonly returns the first-level children which is all that is needed. As per documentationThe .find() and .children() methods are similar, except that the latter only travels a single level down the DOM tree.Sofindwould be incorrect to use if you only care about the first-level children. Performance is irrelevant at this point. – François Wahl Dec 27 '12 at 23:31Why don't you do find('td') instead of children()?. I tried to answer that for you. No need to be rude and unprofessional about it! – François Wahl Dec 27 '12 at 23:36