This is getting annoying — when I click on an item in a Bootstrap dropdown, the dropdown doesn\'t close. I have it set up to open a Facebox lightbox when you click the dropd
Reading the documentation and using JavaScript it could be done using the toggle method:
$('.button-class').on('click',function(e) { e.preventDefault(); $('.dropdown-class').dropdown('toggle'); }
You can read about it in: http://getbootstrap.com/javascript/#dropdowns-methods