Skip to content

Instantly share code, notes, and snippets.

@RoseCrime
Last active July 9, 2019 15:26
Show Gist options
  • Save RoseCrime/6b18ddf3579d0d7219b7de03216bd3ce to your computer and use it in GitHub Desktop.
Save RoseCrime/6b18ddf3579d0d7219b7de03216bd3ce to your computer and use it in GitHub Desktop.
Hightlight active menu link
let lastlink = location.pathname.split('/').filter(el => el)
lastlink = lastlink[lastlink.length - 1]
$('.category_sidebar a').each((index, element) => {
//.category_sidebar a is just selector for your menu links
let href = $(element).attr('href').split('/').filter(el => el)
href = href[href.length - 1]
if (lastlink == href)
$(element).addClass('current-link')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment