Closing Modal screen not working

Closing Modal screen not working

Hello,

Im trying to close all modal screens when I either mouseleave or blur. But so far I cant get any of them to work.

Im using the same functions in my close button and it works correctly.

The mouseleave/blur event is firing because it is displayed on the console.log.

  1. $(".theeye").mouseleave(function(){           
  2. console.log("blur");                          
  3.       
  4.   $(".ui-dialog-content").dialog("close");    
  5.    $("#modal").empty();                       
  6.  });