I've got a bit of code where I want to look at each row in a table and look for a particular with a class specific class.
$("tr").each(function() {
$(this).find("td").find(".group_name").css("background-color", "red");
});
So that all the td's with the class "group_name" are made red.

<td>elements with the classgroup_namered? – Anthony Grist Jul 26 '12 at 9:50