</body>
tag to capture input and redirect.userInput
and the button has the ID redirectBtn
.To append user input to the end of a redirect URL in Webflow, you can use JavaScript and window.location.href. Here's how to do it:
Example JavaScript for Redirecting:
document.getElementById("redirectBtn").addEventListener("click", function() { let userInput = document.getElementById("userInput").value; if (userInput) { window.location.href = "https://example.com/page?query=" + encodeURIComponent(userInput); }});
userInput
.redirectBtn
.?query=value
) to the redirect URL.By adding an input field, a button, and a JavaScript script in Webflow, you can capture user input and append it to a redirect URL dynamically.