Skip to content

Instantly share code, notes, and snippets.

@sgraber
Created February 7, 2010 02:19
Show Gist options
  • Save sgraber/297136 to your computer and use it in GitHub Desktop.
Save sgraber/297136 to your computer and use it in GitHub Desktop.
// On Hover add and Remove a class
$('.onhover').hover(
function(){ $(this).addClass('hover_style_class') },
function(){ $(this).removeClass('hover_style_class') }
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment