Hi,
I've got a table and when I remove a row it animates with slideUp.
$(id).find("td div").slideUp
I used this trick to use slideUp on a row : link text
There is no problem when all columns are displayed, but when I have hidden columns, it just removes the row with no animation. I guess it is a normal behaviour from slideUp, but is there a trick to make it work with animate? I was thinking of testing if the td is hidden, do nothing, else slideUp, but I don't think this will do the trick.
Thanks for your answers