Twitter bootstrap stop propagation on dropdown open

后端 未结 6 1637
清酒与你
清酒与你 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 10:52

    I used

    $('.multiselect').on('click', function (e) {
        $(this).next('.dropdown-menu').toggle();
        e.stopPropagation();
    });
    

    This is similar to @Joe's answer, but a bit more generic

提交回复
热议问题