Guest User

Untitled

a guest
Sep 26th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $(document).ready(function(){
  2. var show_modal = true;
  3. showExit = function(){
  4. if(show_modal){
  5. show_modal = false;
  6. // Открытие popup окна
  7. $.fancybox.open({
  8. src : $('#modal_exit'),
  9. type : 'inline'
  10. });
  11. console.log('Вышли из браузера');
  12. }
  13. }
  14. $(document).mouseleave(function(e){
  15. if (e.clientY < 0) {
  16. showExit();
  17. }
  18. });
  19. });
Add Comment
Please, Sign In to add comment