Skip to content

Instantly share code, notes, and snippets.

@zurie
Created February 19, 2015 15:23
Show Gist options
  • Save zurie/ed2dda177d9e67720b07 to your computer and use it in GitHub Desktop.
Save zurie/ed2dda177d9e67720b07 to your computer and use it in GitHub Desktop.
$('li')
.hover(function(event) {
$(this)[ (event.type == 'mouseenter') ? 'add' : 'remove') + 'Class' ]('test');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment