jQuery .hover() or .mouseleave() not working on chrome
问题 Problem description: In my menu when .mouseenter() the menu opens and when .mouseleave() it closes, but if i click a lot , the .mouseleave() event is executed. This only happened on chrome browser. I have other .click() events inside my menu, but every click I made, the .mouseleave() event is execute. $(document).ready(function() { $("#nav1 li").hover( function() { $(this).find('ul').slideDown(); }, function() { $(this).find('ul').slideUp(); }); }); #nav1 a { color: #FFFFFF; } #nav1 li ul li