Skip to content

Instantly share code, notes, and snippets.

@bratsun
Created September 17, 2015 14:03
Show Gist options
  • Save bratsun/a1e9535fe3282806b0ed to your computer and use it in GitHub Desktop.
Save bratsun/a1e9535fe3282806b0ed to your computer and use it in GitHub Desktop.
Hover
$('.block').on({
mouseenter: function () {
var t = $(this);
$('.block:visible').not(t).addClass('hover');
},
mouseleave: function () {
var t = $(this);
$('.block:visible').not(t).removeClass('hover');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment