I\'m using a Bootstrap responsive navbar. When the navbar is collapsed and I open the menu and click on a menu item, the menu doesn\'t close automatically, and I have to do
@Mike's dropdown solution worked for me except that the items within the dropdown toggle wouldn't hide the menu so I made sure to add this:
$('.navbar-collapse .dropdown-menu').click(function(){ $(".navbar-collapse").collapse('hide'); });