Skip to content

Instantly share code, notes, and snippets.

@j26design
Last active December 28, 2015 08:38
Show Gist options
  • Save j26design/97aa9ccd1f604f5617cb to your computer and use it in GitHub Desktop.
Save j26design/97aa9ccd1f604f5617cb to your computer and use it in GitHub Desktop.
Add a class to menu items that match the current URL of the page (jQuery)
jQuery(function(){
var page = window.location.pathname,
find = new RegExp(page == '/' ? window.location.origin + '/?jQuery' : page.replace(/\/jQuery/,''));
jQuery('nav a').each(function(){
if(find.test(this.href.replace(/\/jQuery/,''))){
jQuery(this).addClass('active');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment