class on td is causing tr not to respond
- by Catfish
I have this script and the rows that have td class "odd" will not toggle the blue color that the rows without the class "odd" do. anybody know why?
//Used to make a row turn blue if available
$('tr:not(theadtr)').toggle(function() {
$(this).addClass("hltclick"); },
function() {
$(this).removeClass("hltclick");
});
…