const queryString = window.location.search; const urlParams = new URLSearchParams(queryString); const par =urlParams.get('influencer_code'); if(par){ localStorage.setItem('influencer_code',par); } const parr =urlParams.get('connection_code'); if(parr){ localStorage.setItem('connection_code',parr); } if(window.location.pathname == '/SiparisTamamlandi'){ const siparis_detayi=_buSiparis; const influencer_code=localStorage.getItem('influencer_code'); const connection_code = localStorage.getItem('connection_code'); if(influencer_code !== null){ let body = [ _buSiparis,influencer_code,connection_code ]; let options = { method: 'POST', headers: { 'Content-Type': 'application/json;charset=utf-8' }, body: JSON.stringify(body) } let fetchRes = fetch( 'https://influencer.loccomoda.com/locco_influencer.js', options); fetchRes.then(res => res.json()).then(d => { localStorage.removeItem('influencer_code') localStorage.removeItem('connection_code') console.log(d) }) } } $(document).ready(function () { console.log('inf_ready'); $('.product-whatsapp').click(function(e) { e.preventDefault() var link = $('.product-whatsapp').attr('href') console.log(link) var influencer_code=localStorage.getItem('influencer_code'); var connection_code=localStorage.getItem('connection_code'); if(influencer_code !== null){ window.location=link+'?infCode='+influencer_code+'&conCode='+connection_code } }); }); var hours = 24; var now = new Date().getTime(); var setupTime = localStorage.getItem('setupTime'); if (setupTime == null) { localStorage.setItem('setupTime', now) } else { if(now-setupTime > hours*60*60*1000) { localStorage.removeItem('influencer_code') localStorage.removeItem('connection_code') localStorage.setItem('setupTime', now); } }