jQuery: toggle('slow') animation from top down?
You could use .slideToggle('slow')
.
The working demo.
Try .slideDown('slow')
. Note that this will only work for sliding down (to reveal) and sliding up (to hide). For anything more complex, you're looking for .animate(...)
or something from jQuery UI.