Skip to content

Instantly share code, notes, and snippets.

@koldovsky
Created November 15, 2016 15:47
Show Gist options
  • Save koldovsky/43008af250ec00d6a7d65ba71cf0dfc0 to your computer and use it in GitHub Desktop.
Save koldovsky/43008af250ec00d6a7d65ba71cf0dfc0 to your computer and use it in GitHub Desktop.
Collapse bootstrap navbar on click
$(function() {
$(document).on('click','.navbar-collapse.in',function(e) {
if( $(e.target).is('a') && $(e.target).attr('class') != 'dropdown-toggle' ) {
$(this).collapse('hide');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment