Ca sa verificam daca visitatorul o ajuns la sfarsitul site-lui:
var hw = jQuery( window ).height();
var hd = jQuery( document ).height();
jQuery(window).scroll(function(){
var s = jQuery(window).scrollTop();
if (s + hw > hd){
hop();//afisam popo-ul sau ce vrem sa facem
}
});
Daca mouse-ul paraseste fereastra activa.
jQuery(document).on('mouseleave', function(event){
if (event.pageY < 10){ //- pe noi ne intereseaza daca iesa pe sus
hop();//afisam popo-ul sau ce vrem sa facem
}
});