Skip to content

Instantly share code, notes, and snippets.

@dnasca
Created December 7, 2015 20:12
Show Gist options
  • Save dnasca/8847c667b6153f7da60c to your computer and use it in GitHub Desktop.
Save dnasca/8847c667b6153f7da60c to your computer and use it in GitHub Desktop.
jq .hover
$('.list-group-item').hover(function () {
$(this).addClass('list-group-item-info');
}, function () {
$(this).removeClass('list-group-item-info');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment