Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stanruss/76761394542ff62cbd9959a567ad3c99 to your computer and use it in GitHub Desktop.
Save stanruss/76761394542ff62cbd9959a567ad3c99 to your computer and use it in GitHub Desktop.
Скрыть мобильное меню при нажатии на ссылку
$(function(){
var navMain = $(".navbar-collapse");
navMain.on("click", "a:not([data-toggle])", null, function () {
navMain.collapse('hide');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment