tags:

views:

340

answers:

1

I'm trying to use JQuery to select all of the TD's in a table that DON'T have an A tag inside them. (They should just have text). How can I do this?

+8  A: 
$("td:not(:has(a))").doStuff();
cletus
perfect, thank you!
d1k_is