Skip to content

Instantly share code, notes, and snippets.

@rafaelmv
Last active June 17, 2016 14:10
Show Gist options
  • Save rafaelmv/787631d4e58e0228ad4f to your computer and use it in GitHub Desktop.
Save rafaelmv/787631d4e58e0228ad4f to your computer and use it in GitHub Desktop.
var menu = document.getElementsByClassName("your-elements");
for(var i = 0; i < menu.length; i++){
if(menu[i].getAttribute("href") == window.location.pathname){
menu[i].id = "devf-selected-menu"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment