I am using jQuery 1.6.2
I am trying to turn the first and last cells of a table yellow.
Basically, I am using two lines of code to accomplish this.
$("tr:first").children("td:first").css("background", "yellow");
$("tr:first").children("td:last").css("background", "yellow");
How can I combine the two filters together to get the first and last tds in a row?