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
In case anyone else is interested, I found a solution elsewhere. It's beautifully simple.
Add this id to your markup:
And add this to your JS:
$('#hideonclick a').click(function (e) { e.preventDefault(); $(this).tab('show'); if ($('.btn').is(":visible")) $('.btn').click(); });