accessing last cell in current row
Hi!
i'm trying to remove last cell in each of my table rows, but i don't how to use :last selector with $(this). here is the code:
$('#myTable TR').each(function() {
$(this).find(td:last).remove();
}
thanks in advance!