Basically I try to have 2 dropdown lists in a form as an input, then use that to put on a URL as a variable as Example Domain
But the only problem is I don’t want to complete the form, because I don’t really need that info to be saved it is only to redirect the user to a new page and the form limit would be maxed out pretty fast. Would be great just to have a button that when it is clicked, it is just added to the URL the variables selected on the form.
If you share your read-only link I could take a look & get a better idea of what your trying to do. Are your trying to redirect a user to a set URL based on what they select from the 2 dropdowns?
Yeah it wouldn’t be, it’s not actually a Webflow feature, it’s just the way HTML forms work.
Fortunately Webflow exposes it well enough to access that functionality with just designer settings.
I’ve tried your solution but it don’t recall the input.
my redirect URL is to a typeform survey where I have a hidden field in the url.
“www.typeformexampleurl.com?email=xxxx” and the “email=xxxx” is the hidden field that typeform is using to fill my answers in the survey.
In order to not ask twice the email (once in the webflow form, and once again in the typeform survey), I’d like to insert the input from my email field in my webflow form to replace the “xxxx” in my URL redirecting to typeform.
Hi Pierre, this is exactly the same approach for you-
Make sure in your target URL you do not have the ?email= part, that will be added automatically by the browser as long as your method is GET and you have a form field named email.
I’ve putted my url without the “#email=xxxx”, I have a form field named “email” and the URL just goes at with a “?typeform-source=www.cyberr.ai” added to it and not the email field input.
You need your url in the action of the form, not the redirect.
Also depending on your browser, you may not be able to have querystring params in the URL, you’ll have to factor those out into the form.
Lookup hidden fields if you’re unfamiliar with that.
If you’re trying to submit the form to Webflow’s handler and then redirect the user to another URL with some of that form data on the querystring, you can do that using custom code.