var scrollCount=0;var clickCount=0;var timer=null;var visitTime=Math.floor(new Date().getTime()/1000);function generateUniqueId(){return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,function(c){var r=Math.random()*16|0,v=c==='x'?r:(r&0x3|0x8);return v.toString(16)})}if(typeof Storage!=='undefined'){if(!localStorage.getItem("uniqueId")){var uniqueId=generateUniqueId();localStorage.setItem("uniqueId",uniqueId)}var uniqueId=localStorage.getItem("uniqueId")}else{var uniqueId=generateUniqueId()}function sendDataToServer(){var data={visitTime:visitTime,referrer:document.referrer,currentPage:window.location.href,scrollCount:scrollCount,clickCount:clickCount,uniqueId:uniqueId};$.ajax({type:"POST",url:"https://tel.pigcms.com/index.php?m=notice&c=open&a=saveWebLog&uid=0",data:data,dataType:'json',success:function(response){console.log(response);if(clickCount>4){stopSendingData()}else{timer=setTimeout(sendDataToServer,2000)}},error:function(xhr,status,error){timer=setTimeout(sendDataToServer,2000)}})}function monitorUserActions(){$(window).on("wheel",function(){scrollCount++});$(window).on("scroll",function(){scrollCount++});$(document).on("click",function(){clickCount++})}function stopSendingData(){clearTimeout(timer);$(window).off("scroll");$(document).off("click")}sendDataToServer();monitorUserActions();