Skip to content

Instantly share code, notes, and snippets.

@amlang
Created February 15, 2014 09:30
Show Gist options
  • Save amlang/9016710 to your computer and use it in GitHub Desktop.
Save amlang/9016710 to your computer and use it in GitHub Desktop.
//IIFE
(function(window, $) {
//on document ready
$(function() {
//Gets A-Elements `href` attr. and add `active`-class to parents LI-Element
$('a[href="' + window.location.pathname + '"]').parent("li").addClass('active');
});
})(window, window.jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment