Created
March 27, 2018 15:29
-
-
Save seriiserii825/053cd6d8b3b2368c6a520e9d2b511a99 to your computer and use it in GitHub Desktop.
active link ot the menu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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