Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IgorGavrilenko/8910e53570b34e050ff5210ed8510f05 to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/8910e53570b34e050ff5210ed8510f05 to your computer and use it in GitHub Desktop.
jq активный пункт меню
var link = $('.link');
link.each(function() {
if ( (window.location.pathname.indexOf( $(this).attr('href') ) ) > -1) {
$(this).addClass('selected');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment