I'm trying to smoothly remove the first tr of my table by doing:
$("#table_id").children().first().fadeOut('slow');
But the tr just disappears without any nice effect. Actually, this is not working either for any jQuery effect (slideUp, animate, hide('slide', ...), etc).
Any thoughts of how to solve this issue?