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