Twitter bootstrap stop propagation on dropdown open

后端 未结 6 1646
清酒与你
清酒与你 2020-12-10 10:50

I have a twitter bootstrap dropdown inside a div with the plugin jOrgChart.

The problem I\'m having is that when I click the button to open the dropdown menu it also

6条回答
  •  感动是毒
    2020-12-10 11:07

    $("div#chart div.btn-group > a.dropdown-toggle, .dropdown-menu li a").click(function(e) {
        e.stopPropagation();
        $(this).closest('.dropdown').toggleClass('open');
    });​
    

    You should use this instead as above solution doesn't close the dropdown on focus out.

提交回复
热议问题