Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
window.addEventListener('message', function(event) {
// OPTIONAL: Validate the origin for security
// if (event.origin !== 'https://forms.monday.com/forms/d9e478671921553eed3f7221cdadbab4?r=use1') return;
const data = event.data;
if (data && data.source === 'workforms' && data.type === 'submit_success') {
console.log('Form submission detected!');
gtag('event', 'conversion', {
'send_to': 'AW-499184719/AuexCK-_x6kbEM_og-4B'
});
// Optional: Also send a Google Analytics event
gtag('event', 'form_submit', {
'event_category': 'Leads',
'event_label': 'WorkForms Lead'
});
}
});