🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

mouseoutall is a jQuery plugin used to extend the default mouseout event that allows to fires a callback event when the mouse is moved off all elements in a group.

callback

Documentation

jquery.mouseoutall

jQuery event for when the mouse cursor leaves all elements. Mimics the functionality of the "mouseout" event but works on groups of elements.

$('.multiple-elements').mouseoutall(function() {   // Event fires! });

Or with a 1 second delay:

$('.multiple-elements').mouseoutall(1000, function() {   // Event fires after 1 second incase it entered again! });

Online Demo


You May Also Like