[jQuery] Fade Divs one by one

[jQuery] Fade Divs one by one


I have table with entries. each entry is contained in the div. What i
want to do is to fade them one by one, the slide up the table. is it
possible in jquery.
i tired this but its not happening exactly
$('td','#products_table').each(function (td_id) {
            $('#products_table td:eq('+td_id+') div.entry ').animate({height:
0}, 'slow').empty();
        });