top of page
bottom of page
window.addEventListener('load', function() {
const forms = document.querySelectorAll('form');
forms.forEach(function(form) {
form.addEventListener('submit', function(e) {
const formName = form.getAttribute('data-name') ||
form.getAttribute('name') ||
form.querySelector('[data-name]')?.getAttribute('data-name') ||
'Unknown Form';
if (window.gtag) {
gtag('event', 'form_submit', {
'form_name': formName,
'timestamp': new Date().toISOString()
});
}
});
});
});