I need to manually style the first row of every table on a page. Unfortunately I'm dealing with some old browsers so would like to do this via jQuery.
Currently I'm using:
$(function() {
$(".OpenCourse tr:first").addClass("OpenCoursesHeader");
});
then adding .OpenCoursesHeader td {}
to style.
the class OpenCoursesHeader
only seems to be applied to the first table.
Any ideas how I get it to apply to the second? There will always only be two tables on the page if that makes it simpler.