I have a table that has some rows in it.
Here is an example of my table just with alot less table rows.
<table>
<tr>
<td>bob</td>
<td class="CheckThis">0 </td>
</tr>
<tr>
<td>Jim</td>
<td class="CheckThis">3</td>
</tr>
</table>
Now I want to look at the second table cells and get rows back that have value greater then 0.
So in my above example it would get the entire row that contains “3” since it is greater then zero.
I don’t see any sectors that do greater then something in jquery but I could have just missed it.
thanks
Try this:
This will select you each TR element that has a TD child element with the class CheckThis that’s content is greater than 0.