Template:Appeal/FY2324 E3 XH/en: Difference between revisions
Content deleted Content added
No edit summary |
Prevent XSS attack using .textContent |
||
(2 intermediate revisions by the same user not shown) | |||
Line 49:
const urlParams = new URLSearchParams(window.location.search);
const firstName = urlParams.get("fname");
if (firstName){
const capitalizedName = firstName.charAt(0).toUpperCase() + firstName.slice(1); //Capitalize name
document.getElementById('donor-greeting').
}
}
</script>
|