I am using the jQuery mouseenter and mouseleave events to slide a div down and up.
Everything works well except for the mouseleave which doesn\'t appear to fire ONLY
Try to use hover instead mouseenter and mouseleave;
$(document).ready(function() { $("#div").hover(function() { $("#something").slideDown(400); }, function() { $("#something").slideUp(400); }); });