window.onload = function () { var formExists = document.getElementById("webform-submission-esperanza-lejos-del-hogar-node-30396-add-form"); var countryExists = document.getElementById("edit-country-name"); var emailPermissionExists = document.getElementById('edit-i-agree-to-receive-emails-from-unhcr-'); if (formExists & countryExists && emailPermissionExists) { formExists.onsubmit = function onSubmit(form) { console.log('Webform submitted'); var country = countryExists; var countryid = country.value; var countryname = String(country.options[country.selectedIndex].text); var emailPermission = false; if (emailPermissionExists.checked) { emailPermission = true; } dataLayer.push({ "event": "petition_sign", "country": countryname, "email_permission": emailPermission, "moduleType": "Home_away_from_home" }); } } } 6qj2k