Skip to content

Instantly share code, notes, and snippets.

@bcalloway
Created February 23, 2009 15:38
Show Gist options
  • Save bcalloway/69002 to your computer and use it in GitHub Desktop.
Save bcalloway/69002 to your computer and use it in GitHub Desktop.
jQuery 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