vote up 1 vote down star

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?

flag

2 Answers

vote up 3 vote down check

Try this:

$row.find(" > td:last > span:first").html()

The first arrow in the find() means it will only look at immediate children of $row to find the last <td>. It's equivalent to: $row.children("td:last") but using find() gives you the extra flexibility to continue searching deeper.

link|flag
What does the first arrow in the find statement mean? – JMP Aug 31 at 21:12
1  
that means it will only look at immediate children of $row to find the last td. it's equivalent to: $row.children("td:last") but using find gives you the extra flexibility to continue searching deeper – nickf Aug 31 at 21:16
Thanks very much! – JMP Aug 31 at 21:18
vote up 1 vote down

Are there multiple spans? If so, the major difference between the one that worked and the others is that the others are missing the ":first" instruction.

Also, if you use the find method instead, things are likely to work better. The "children" method doesn't necessarily hunt down deeper in the tree.

link|flag
+1 for pointing out why find works better. Only 1 span, though, to answer your question. – JMP Aug 31 at 21:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.