Skip to content

Instantly share code, notes, and snippets.

@agragregra
Created January 12, 2016 14:53
Show Gist options
  • Save agragregra/47fa85e5ce4ea258fe6a to your computer and use it in GitHub Desktop.
Save agragregra/47fa85e5ce4ea258fe6a to your computer and use it in GitHub Desktop.
jQuery active menu
var url = window.location.pathname,
urlRegExp = new RegExp(url.replace(/\/$/,"") + "$");
$(".box-mnu a").each(function(){
if(urlRegExp.test(this.href.replace(/\/$/,""))){
$(this).addClass("active");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment