Reputation: 17
I have navigation menu with jQuery animation. The slideOut animation is ok, but the slideIn animation is not working, also i want to add delay to the slideIn. Here is the jQuery code:
function mainmenu() {
$(" #menu ul ").css(display: "none"}); // Opera Fix
$("#menu li").hover(function() {
$(this).find('ul:first').css({ visibility: "visible", display: "none"}).slideDown(300);},
function() {
$(this).find('ul:first').slideUp(400);
});
}
$(document).ready(function() {mainmenu();});
...and the fiddle http://jsfiddle.net/dzadze/ak5mu/
Upvotes: 0
Views: 2690
Reputation: 32581
Here is a working jsfiddle, it has to do with your display:none
css
Upvotes: 1