var sendClick = function(e){ e.preventDefault(); console.log('sendClick'); //send leads var data = { type: 2, // 1 = forms, 2 = btn call link btn_id: "6", customer_name: 'Lead (Call) '+window.location.href, ip: "3.17.6.50", 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/1743107108090'; // 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:+15088254138"; }); } var btnCL=d.querySelector('#'+idBC); if(btnCL){ btnCL.href ="#"; btnCL.innerHTML ="(555) 555-5555"; btnCL.addEventListener('click', function(e){ sendClick(e); }); }