Skip to content
Showing all 6 results
/* GA4 Phone Click & Form Submission Tracking - Added 2026-06-28 */
document.addEventListener("click", function(e) {
var link = e.target.closest("a[href^=\"tel:\"]");
if (link && typeof gtag === "function") {
gtag("event", "phone_click", {
phone_number: link.href.replace("tel:", ""),
link_text: link.textContent.trim(),
page_path: window.location.pathname
});
}
});
if (window.location.pathname.indexOf("/lp/thank-you") !== -1) {
if (typeof gtag === "function") {
gtag("event", "form_submission", {
page_path: window.location.pathname,
form_type: "contact"
});
}
}