Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save TrywaR/2276257a9371468865acdc3fe3881f41 to your computer and use it in GitHub Desktop.
Save TrywaR/2276257a9371468865acdc3fe3881f41 to your computer and use it in GitHub Desktop.
[ jQuery] Активный пункт меню из Url
$('.header__menu a').each(function () {
var location = window.location.href;
var link = this.href;
var result = location.match(link);
if(result != null) {
$(this).addClass('menu__links--active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment