How can use the slideDown() function with easing?
Maybe extend it somehow?
I\'m looking for something like this:
jQuery.fn.slideDown = function(s
You can use the animate method with jQueryUI and the easing effects like this:
$(".demo").animate({height: "hide"}, 1500, "easeInQuad", function(){});