Skip to content

Instantly share code, notes, and snippets.

@benwo
Last active August 29, 2015 14:10
Show Gist options
  • Save benwo/08f8ec297a4ea04007b6 to your computer and use it in GitHub Desktop.
Save benwo/08f8ec297a4ea04007b6 to your computer and use it in GitHub Desktop.
Collapse bootstrap navbar after an item is clicked in the dropdown (for mobile widths).
$(document).on('click','.navbar-collapse.in',function(e) {
// If child is an anchor or has class dropdown-toggle
if( $(e.target).is('a') || ( $(e.target).attr('class') != 'dropdown-toggle' ) ) {
// Collapse the dropdown nav
$(this).collapse('hide');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment