Supprimer la première ligne de la table jQuery
$('#tableId tr:first').fadeOut(2000, function(){
$(this).remove();
});
Fahim Foysal
$('#tableId tr:first').fadeOut(2000, function(){
$(this).remove();
});