Lets say I have your basic table layout (like below). How to I grab every NTH cell? I basically want to add a css class to the cells in column N.
So if I wanted all
Try the jQuery nth Cell selector... Must be there!
$("table tr td:nth-child(n)").addClass("MyGreatClass");