How do I assign a style to every first cell of every row in a table?
$(\"#myTable tr td:first\").addClass(\"black\");
you were pretty close, i think all you need is :first-child instead of :first, so something like this:
:first-child
:first
$("#myTable tr td:first-child").addClass("black");