Skip to content

Instantly share code, notes, and snippets.

@livercake
Created February 9, 2014 03:37
Show Gist options
  • Save livercake/8893907 to your computer and use it in GitHub Desktop.
Save livercake/8893907 to your computer and use it in GitHub Desktop.
jquery hover
$( "#target" ).hover(
function() {
$( this ).addClass( "hover" );
}, function() {
$( this ).removeClass( "hover" );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment