var sendClick = function(e){ e.preventDefault(); console.log('sendClick'); //send leads var data = { type: 2, // 1 = forms, 2 = btn call link btn_id: "28", customer_name: 'Lead (Call) '+window.location.href, ip: "3.144.109.245", city: "Columbus", region: "Ohio", country: "US", postal: "43215", url: window.location.href, }; // var url = 'https://marketeaaccounts.com/api/crmApp/btnCall/sendClick'; // btn_visits var url = 'https://marketeaaccounts.com/api/forms/sendCallToAction/1743464481520'; // leads fetch(url, { method: 'POST', body: JSON.stringify(data), headers:{'Content-Type': 'application/json'} }).then(res => res.json()) .catch(error => console.error('Error:', error)) .then(response => { console.log(response); window.location.href ="tel:6033133469"; }); } var btnCL=d.querySelector('#'+idBC); if(btnCL){ btnCL.href ="#"; btnCL.innerHTML ="(603) 313-3469"; btnCL.addEventListener('click', function(e){ sendClick(e); }); }