Monitoring all traffic on a website can be done by loading a javascript file or adding a tracking pixel to your website. So you can easily use Contact Fields with tracking pixel inside your website code.
[code]
function myFunction() {
//alert (“sdsdssdsprem”);
// alert( document.getElementById(“Customer_first_name”).value);
(function(w,d,t,u,n,a,m){w[‘AriticTrackingObject’]=n;
w[n]=w[n]||function(){(w[n].q=w[n].q||[]).push(arguments)},a=d.createElement(t),
m=d.getElementsByTagName(t)[0];a.async=1;a.src=u;m.parentNode.insertBefore(a,m)
})(window,document,’script’,’https://ma.aritic.com/atc.js’,’at’);
// mt(‘send’, ‘pageview’);
// mt(‘send’, ‘pageview’,{email: document.getElementById(“Customer_email”).value,firstname: document.getElementById(“Customer_first_name”).value});
at(‘send’, ‘pageview’,{email: document.getElementById(“Customer_email”).value,firstname: document.getElementById(“Customer_first_name”).value, lastname: document.getElementById(“Customer_last_name”).value, source: ‘Main Registration Page’});
ga(‘send’, ‘event’, { eventCategory: ‘registration’, eventAction: ‘registration’,eventLabel: document.getElementById(“Customer_email”).value });
}
[/code]