I'm trying to apply different style to every first table row below a certain class using this code:
$(".my-class tr:first td").css({"color":"#0064CC","font-size":"15px","border-bottom-style":"none"});
The problem is that it only applies it to the first table it finds below that class.
What am I missing here?