How to implement a Navbar Dropdown Hover in Bootstrap v4?

前端 未结 20 943
猫巷女王i
猫巷女王i 2020-12-02 05:40

I am a bit confused on the new bootstrap version since they changed dropdown menus to divs:

20条回答
  •  一生所求
    2020-12-02 06:28

    Neither of the top solutions worked for me.

    This works perfectly, keeps submenus open while browsing, add uses the native Bootstrap javascript.

    // Mouse over
    $('body').on('mouseover', '.dropdown', function(e) { 
        $(this).children('.dropdown-toggle').dropdown('show');
    });
    
    // Mouse leave
    $('body').on('mouseleave', '.dropdown', function(e) { 
        $(this).children('.dropdown-toggle').dropdown('hide');
    });
    

提交回复
热议问题