jquery.exitintent
jquery.exitintent copied to clipboard
Exitintent is triggering even when trying to select item from select list.
If you have form with select list on web page. And when you will try to choose the option from Select list. Exitintent event will be trigger.
@mkhalid03, which browser/OS?
Firefox/ Mac OS Sierra Working fine in chrome.
Wrapping the $.event.trigger('exitintent'); inside an if to check the target length within the timer fixes the problem for me;
if (ev.target.length === undefined) {
$.event.trigger('exitintent');
}