soundasleep / jquery-dropdown

Bootstrap-style dropdowns with some added features and no dependencies.
Other
767 stars 268 forks source link

stop propagation with right click #136

Open jquimera opened 6 years ago

jquimera commented 6 years ago

@claviska

$("#showButton").click(function(event){
    event.stopPropagation();
    $('#testInput').dropdown('show');
});

This is interesting, I like the dropdown does not close with the right click.

Can you help me? Thanks!