bootstrap prevent dropdown from closing on click

Prevent Bootstrap Dropdown from Closing on Click

To prevent a Bootstrap dropdown from closing on click, you can use the following JavaScript code:

$('.dropdown-menu').click(function(e) {
  e.stopPropagation();
});

This code attaches a click event to the dropdown menu and stops the event from propagating, which prevents the dropdown from closing when clicked.

This should help you achieve the desired behavior in your Bootstrap dropdown.