views:

146

answers:

3

Every searches I made only included solutions for variables like this: $('#div'+ id)

I need to delete a row.

var row = $(this).parent().parent().parent().find('tr#' + id).html();

I'd like to use the "row" name instead of "$(this)...remove();"

+5  A: 

like

$('tr[name='+rowname+']').remove()
kon
+1  A: 

Just populate the row var with a reference to the row.

var row = $(this).parent().parent().parent().find('tr#' + id);
var html = $(row).html();
$(row).remove();
pmckenna
+4  A: 

use .closest, it is safer than all those chained parent calls in case you change the markup which will break the code.

var row = $(this).closest('tr');
row.remove()
redsquare
This worked, thanks!
Norbert