Given a table row, I want to get the HTML out of the span element that's in the last td in a row.
I ended up with:
$row.children("td:last").children("span:first").html();
I tried:
$row.children("td:last > span").html();
and
$row.children("td:last span").html();
But neither worked. Is there a way to crunch this into a single selector statement?