I'm having trouble with .slideup() and .slideDown()

have a look at the following JSFiddle: http://jsfiddle.net/7se2r/4/

Although the row is appearing and disappearing, I'm not seeing the animation of sliding up or down. any clue as to what I'm doing wrong?

link|improve this question

1  
There may be an issue with the fact that you are using a table, check this out: stackoverflow.com/questions/5126704/slidetoggle-in-table-row – lashleigh Aug 2 '11 at 19:19
feedback

3 Answers

up vote 2 down vote accepted

With "tbody" you can use .show("slow") and .hide("slow"), but you can't do the sliding animation.

Sliding will work if you try it on a "div" for example.

link|improve this answer
1  
Beat me to it +1 you can fade the row in/out but you cant slide it because <tbody> isn't affected by height. – Gallen Aug 2 '11 at 19:26
I'm new to this site. It looks like you have to be quick to answer! I need to start posting some of my hard questions. Thanks Gallen! – 11101101b Aug 2 '11 at 20:02
feedback

Tbody can't be animated. Try to limit the height of Tbody and you'll see that it doesn't change the height.

link|improve this answer
feedback

Setting the dimensions of a part of a table is only used as the minimum dimension, so the section of the table is immediately visible at full size, and the animation of the height has no effect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.