There are many ways:
- I like the way because it's simple: http://stackoverflow.com/questions/10863821/bootstrap-dropdown-closing-when-clicked
$('.dropdown-menu input, .dropdown-menu label').click(function(e) {
e.stopPropagation();
});
- It's a way I tested and it's working, but long way. ref: http://stackoverflow.com/questions/25089297/twitter-bootstrap-avoid-dropdown-menu-close-on-click-inside
ref: