Created
December 13, 2013 21:18
-
-
Save zachharkey/7951480 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
<script type="text/javascript"> | |
jQuery(document).ready(function($){ | |
// Get current url | |
// Select an a element that has the matching href and apply a class of 'active'. Also prepend a - to the content of the link | |
var url = window.location.href; | |
$('.menu a[href="'+url+'"]').addClass('current_page_item'); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment