Skip to content

Instantly share code, notes, and snippets.

@domzgarcia
Created September 20, 2017 07:31
Show Gist options
  • Save domzgarcia/0d21d27b97af6034f5beb5c73a135e94 to your computer and use it in GitHub Desktop.
Save domzgarcia/0d21d27b97af6034f5beb5c73a135e94 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
// # Navigation aesthetics
jQuery('.mainNav > li > a').each( (index, el) => {
const url = $(el).attr('href')
if(url === window.location.pathname){
$(el).parent().addClass('active')
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment