GET
and ensure fields for name, email, and phone exist.name, email, phone
) to capture and use these values.You can pass name, email, and phone from a Webflow form to a Typeform using URL parameters and Typeform's hidden fields. Here's how:
GET
in the Form Settings (Webflow forms default to POST
, so you’ll need a workaround like using a custom form action or JavaScript for URL redirection).After form submission, redirect users to the Typeform link while passing the form data as URL parameters.
Example redirect URL format:
```
https://yourtypeform.com/to/xyz123?name=John&email=john@example.com&phone=1234567890
```
You may need JavaScript/JQuery to construct this URL dynamically:
```javascript
```
Replace yourtypeform.com/to/xyz123
with your actual Typeform link.
This script prevents the default submission and redirects with the form data.
You need to capture Webflow form data, append it to the Typeform URL, and configure Typeform to recognize these hidden fields. Using JavaScript ensures a seamless transfer without requiring a database or third-party automation tools.