Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created February 11, 2014 19:00
Show Gist options
  • Save tanrax/8941631 to your computer and use it in GitHub Desktop.
Save tanrax/8941631 to your computer and use it in GitHub Desktop.
JQuery: Intercambiar clases efecto hover
$('.btn').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