I tried to use an old jQuery script with jQuery version 3.2.1 but I have some issues, here is my code:
if (options.closeOnBlur) {
el.on('blur', function (e) {
if (!self.calendar.is(":hover"))
self.hide(e);
});
}
I know on new version :hover
is deprecated but do you have any idea how to update it?