I\'m trying to both slide/fade a div simultaneously on a hover, then slide/fade it out at the end of the hover, using JQuery. The slide/fade out work properly, but the slide
idk if this helps or not, but you can skip the slideUp and fadeIn shortcuts and just use animate:
http://jsfiddle.net/bZXjv/
$('#anotherDiv').hover(function() { $('#myDiv') .stop(true, true) .animate({ height:"toggle", opacity:"toggle" },slideDuration); });