var idleTime = 0; var nbProds = 0; $(document).ready(function () { //Increment the idle time counter every minute. var idleInterval = setInterval(timerIncrement, 60000); // 1 minute //Zero the idle timer on mouse movement. $(this).mousemove(function (e) { idleTime = 0; }); $(this).keypress(function (e) { idleTime = 0; }); $(document).mousemove(function(e) { if(e.pageY <= 5 && nbProds > 0 && idleTime > 10){ openPopupPromo(); //alert('promo '); } }); }); function openPopupPromo(){ if ($('.fancybox-opened').length == 0) { $.fancybox({ width: 768, height: 345, autoSize: false, href: '/popup_promo.php', type: 'ajax', afterLoad: function (current, previous){ $('.fancybox-wrap').addClass('bg_promo'); }, beforeClose: function (){ $('.fancybox-wrap').removeClass('bg_promo'); } }); } } function timerIncrement() { idleTime = idleTime + 1; if (idleTime > 15) { // 2 minutes openPopupPromo(); } } function showCode(){ $('#code_promo').click(function (){ $('#code_promo span').html('REDCUTION07'); $('#code_promo span').addClass('show'); $('#code_promo').css('background-image', 'none'); }); }