Thank You!
document.querySelector('form').addEventListener('submit', function(event) { event.preventDefault(); // Prevent default form submission if needed fbq('track', 'Lead'); // Trigger the Lead event window.location.href = 'https://www.yourwebsite.com/thank-you'; // Redirect to the Thank You page });
Thank You!