Skip to content

Instantly share code, notes, and snippets.

@scullygroup
Created December 18, 2008 17:43
Show Gist options
  • Save scullygroup/37571 to your computer and use it in GitHub Desktop.
Save scullygroup/37571 to your computer and use it in GitHub Desktop.
jQuery nav hover class
$('#main-nav ul li').each(function() {
$(this).hover(function() {
$(this).addClass('nav-on');
}, function() {
$(this).removeClass('nav-on');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment