I have a table in which there are several rows.
Here is an example of my table with only fewer 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 cells of the second table and return rows whose value is greater than 0.
So, in my previous example, it will get the whole line containing "3", since it is greater than zero.
I do not see sectors that do something more in jquery, but I could just skip this.
thank
source
share