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.
- $(".theeye").mouseleave(function(){
- console.log("blur");
-
- $(".ui-dialog-content").dialog("close");
- $("#modal").empty();
- });