I\'m looking for a way to make the Twitter Bootstrap mobile/tablet nav automatically hide/collapse after clicking a menu link. I have a lot of menu items and so when users e
If you are using sub menu, you have to modify @user2562923's code as follow :
$('.navbar-collapse a').click(function (e) { if( $(e.target).is('a') && $(e.target).attr('class') != 'dropdown-toggle' ) { $('.navbar-collapse').collapse('toggle'); } });