Skip to content

Instantly share code, notes, and snippets.

@Webbist-dev
Created October 2, 2014 08:49
Show Gist options
  • Save Webbist-dev/8e863425707e3ad893af to your computer and use it in GitHub Desktop.
Save Webbist-dev/8e863425707e3ad893af to your computer and use it in GitHub Desktop.
Script to find active link from page url
$('.sibling-pages li a').each(function() {
var url = window.location.href; $(this).filter(function() {
return this.href == url; }).addClass('current');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment