showing results for - "remove first row from table jquery"
Nikita
02 Jul 2016
1$('#tableId tr:first').fadeOut(2000, function(){
2    $(this).remove();
3});