I'm trying to add a hover effect to show/hide a dropdown menu. The problem is when I hover over the link the menu shows but disappears again.
$(".hoverli").hover(
function () {
$('ul.file_menu').slideDown('medium');
},
function () {
$('ul.file_menu').slideUp('medium');
}
);
Please take a look at the demo here: fiddle.
Can you tell me what I'm missing in the code?
thanks