Skip to content

Instantly share code, notes, and snippets.

@seriiserii825
Created March 27, 2018 15:29
Show Gist options
  • Save seriiserii825/053cd6d8b3b2368c6a520e9d2b511a99 to your computer and use it in GitHub Desktop.
Save seriiserii825/053cd6d8b3b2368c6a520e9d2b511a99 to your computer and use it in GitHub Desktop.
active link ot the menu
/*active menu
=======================================*/
$('#js-top-nav_menu li').each(function () {
var location = window.location.pathname;
var location = location.substring(1);
var link = $(this).children('a').attr('href');
if(location === link) {
$(this).addClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment