I have a html table:
Name Length Description x
Name1 444 Blabd x.png
Name2 55 Blabla x.png
Name3 11 Blaaa x.png
table id="firsttable" img class="delete"
I have a value (from other table):
var value = $(this).closest('tr').find('td:first').html();
I want to find that value in first column of a table and delete x.png of a row, which has that value.
Something like: (with mistakes)
$('#firsttable tr td:first:contents("'+value+'")').closest('tr').find('td:last').remove();