Skip to content

Instantly share code, notes, and snippets.

@nosajio
Created March 11, 2018 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosajio/37ff123123d0141706e7a4e85a29c6cd to your computer and use it in GitHub Desktop.
Save nosajio/37ff123123d0141706e7a4e85a29c6cd to your computer and use it in GitHub Desktop.
$('.animated-hover').each(function(i) {
$(this).on('mouseover', function() {
$(this).addClass('animated');
})
.on('mouseout', function() {
$(this).removeClass('animated');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment