Skip to content

Instantly share code, notes, and snippets.

@sammydigits
Created October 21, 2014 19:24
Show Gist options
  • Select an option

  • Save sammydigits/f8011bb92bb2f520e4ee to your computer and use it in GitHub Desktop.

Select an option

Save sammydigits/f8011bb92bb2f520e4ee to your computer and use it in GitHub Desktop.
Collapse Bootstrap hamburger menu when clicked
$(document).on('click','.navbar-collapse.in',function(e) {
if( $(e.target).is('a') ) {
$(this).collapse('hide');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment