Skip to content

Instantly share code, notes, and snippets.

@MeanEYE
Created January 26, 2017 13:55
Show Gist options
  • Save MeanEYE/e88c57801ddfec83d496f4dd73a57206 to your computer and use it in GitHub Desktop.
Save MeanEYE/e88c57801ddfec83d496f4dd73a57206 to your computer and use it in GitHub Desktop.
Exclusive node class.
var list = document.querySelectAll('a');
function handle_click(event) {
event.preventDefault();
for (var i=0, count=list.length; i<count; i++) {
var link = list[i];
if (link === this)
continue;
link.classList.remove('active');
}
this.classList.add('active');
this.nextNode().scrollIntoView();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment