EDIT: I made a typo in the question, my apologies.
<td><span class="price"></span></td> //selected
<td></td> //I want this guy to be selected as well!
<td><span class="price clearance"></span></td>
I basically want: Select all td that don't have span.clearance. This includes td that don't have span as well.
I tried $('td span:not(".clearance")');
it doesn't select <td></td>
. Any clues?