Skip to content

Instantly share code, notes, and snippets.

@toxin20
Created June 20, 2014 11:04
Show Gist options
  • Save toxin20/4c164e14bfc8e2cfa14a to your computer and use it in GitHub Desktop.
Save toxin20/4c164e14bfc8e2cfa14a to your computer and use it in GitHub Desktop.
bs3 navbar bei klick schließen
$(document).ready(function () {
$(".navbar-nav li a").click(function(e) {
$(".navbar-collapse").collapse('hide');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment