I am new at jquery and my fadeIn is not working. I made a JSFIDDLE here. Thank you
$('#menu > li').on('mouseover', function(e){
$(this).find("ul:first").fadeIn(120).finish();
$(this).find('> a').addClass('active');
}).on('mouseout', function(e){
$(this).find("ul:first").stop().finish().delay(500).fadeOut(120);
$(this).find('> a').removeClass('active');
});
Remove
.finish()
:FIDDLE: https://jsfiddle.net/YGB5G/47/
From jQuery site: