Twitter bootstrap stop propagation on dropdown open

后端 未结 6 1638
清酒与你
清酒与你 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:14

    If I understand correctly, you want to avoid closing menu.

    $("div#chart .dropdown-menu li").bind('click',function (e) {
                e.stopPropagation();
            },false);
    

提交回复
热议问题