Created
December 13, 2013 21:19
-
-
Save zachharkey/7951514 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = window.location.href; | |
// Will only work if string in href matches with location | |
$('.menu a[href="'+ url +'"]').addClass('active'); | |
// Will also work for relative and absolute hrefs | |
$('.menu a').filter(function() { | |
return this.href == url; | |
}).addClass('better-active'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment