Skip to content

Instantly share code, notes, and snippets.

@rizqinizamil
Created January 27, 2020 05:16
Show Gist options
  • Save rizqinizamil/c0ee39f10e2ebe7c9cee01e84108c20b to your computer and use it in GitHub Desktop.
Save rizqinizamil/c0ee39f10e2ebe7c9cee01e84108c20b to your computer and use it in GitHub Desktop.
[jQuery] Add/remove class on hover
// Source: https://css-tricks.com/snippets/jquery/addingremoving-class-on-hover/
$('#elm').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