find() with table
find() with table
I want to find in the table specific <tr> element that's first <td> has html value of 3.
I tried something like that:
$('#gvBugs tr').filter(function(tr){return $(this td).html() == 3;})
But I cannot figure out how to repair it.
Thank you in advance for any help.