Skip to content

Instantly share code, notes, and snippets.

@sakunyo
Created July 18, 2011 08:12
Show Gist options
  • Save sakunyo/1088856 to your computer and use it in GitHub Desktop.
Save sakunyo/1088856 to your computer and use it in GitHub Desktop.
_js_a_current
(function(){
$('#archive a').each(function(i){
var t = $(this);
if(location.href.indexOf(t.attr('href')) > -1){
t.addClass('current');
}
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment