Having the following table how can i use jquery to only return the rows where the person has a phone no?
<table>
<tr>
<th>Name</th>
<th>Phone</th>
<th>E-mail</th>
</tr>
<tr>
<td>John</td>
<td>123456</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Joe</td>
<td></td>
<td>[email protected]</td>
</tr>
<tr>
<td>Phil</td>
<td>654321</td>
<td>[email protected]</td>
</tr>
</table>
E.g only John and Phil would be shown since only they have phone no.