Thank You
Thank You!
Your request has been submitted successfully. We’ll be in touch with you shortly.
(function() {
// Check for conversion cookie
function getCookie(name) {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2) return parts.pop().split(‘;’).shift();
}
const conversionCookie = getCookie(‘loop_form_conversion’);
if (conversionCookie) {
// Delete the cookie immediately to prevent multiple triggers
document.cookie = ‘loop_form_conversion=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;’;
// Push conversion event to dataLayer
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
event: ‘conversion_thank_you’,
conversion_timestamp: conversionCookie,
page_type: ‘thank_you’
});
// Google Analytics enhanced ecommerce (if needed)
if (typeof gtag !== ‘undefined’) {
gtag(‘event’, ‘conversion’, {
‘event_category’: ‘form_submission’,
‘event_label’: ‘thank_you_page’,
‘value’: 1
});
}
// Facebook Pixel conversion (if needed)
if (typeof fbq !== ‘undefined’) {
fbq(‘track’, ‘Lead’);
}
}
})();