top of page
bottom of page
const utmKeys = ["utm_source", "utm_medium", "utm_campaign", "utm_content"];
utmKeys.forEach(key => {
const field = document.querySelector(`input[name="${key}"]`);
if (field) {
const val = sessionStorage.getItem(key);
if (val) field.value = val;
}
});
});