find() with table
find() with table
I want to find in the table specific element that's first 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.
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.
This discussion has been closed.