(function() { var take = function() { //DDP const chatform=localStorage.getItem("chatform") if(chatform){ var path=window.location.pathname; if(/order.aspx/.test(path)){ console.log("order.aspx") var url = "https://pr.aqur.com/track"; function track(trackingData){ fetch(url, { method:"POST", headers:{ "Content-Type" : "application/json"}, body:trackingData }) .then(response => response.json()) .then(data => { console.log("Conversion Tracked!!") localStorage.removeItem("chatform") }) } track(chatform) } } } setTimeout(take, 0); }())