Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

Mouse Events in jQuery

Use mouseenter/mouseleave, hover, mousedown/up, and mousemove.

Mouse Events in jQuery — a practical guide to jQuery mouse events with clear examples you can reuse in real projects.

jQuery Tutorial Series (20/101). Prefer one article? Read the complete jQuery tutorial.

Short description

mouseenter/leave do not bubble like mouseover/out — often clearer for UI.

Mouse events

$('.card').on('mouseenter', function () {
  $(this).addClass('hover');
}).on('mouseleave', function () {
  $(this).removeClass('hover');
});

Leave a reply

Your email address will not be published. Required fields are marked *