Loading your results…
const urlParams = new URLSearchParams(window.location.search); const idValue = urlParams.get('id'); const hiddenInput = document.querySelector('input[name="fname"]'); hiddenInput.hidden=true; if (idValue) { if (hiddenInput) { hiddenInput.value = idValue; } }