jQuery mouseover and mouseleave drop down menus

前端 未结 4 1877
-上瘾入骨i
-上瘾入骨i 2021-02-15 15:48

The following displays a menu:

ONZE WAARDEN

4条回答
  •  春和景丽
    2021-02-15 16:16

    Use some wrapper on your html, and then call mouseleave event on it, like there: http://jsfiddle.net/9yEHV/11/

    $("#wrapper").mouseleave(function () {
        $("#citydrop").slideUp('slow');
    });
    

    And wrapper:

    
    

提交回复
热议问题