I\'m having trouble with .slideup() and .slideDown()
.slideup()
.slideDown()
have a look at the following JSFiddle: http://jsfiddle.net/7se2r/4/
Although t
Also, check you don't have CSS transitions set on your element, or globally to all elements. This will screw with your animations:
* {transition: all 0.1s ease;}