Signup forms across multiple pages

Example:

On landing page you ask for the email address → that takes you to a signup page.

Is it possible to transfer over the email that was added on the landing page to the signup page without it automatically submitting?

Cheers

Possible with custom coding - intercept and inserts variable as a get parameter via url to second page which reads parameter and inserts into field.


#Here are the tools you need to put above script together

Submit to second page:

Simply change form action to second page’s relative URL.

Get parameter from URL:

How to get URL parameter using jQuery or plain JavaScript? - Stack Overflow or url - How can I get query string values in JavaScript? - Stack Overflow

Get an element on the page:

https://learn.jquery.com/using-jquery-core/faq/how-do-i-select-an-item-using-class-or-id/

Set value of a form field:

http://api.jquery.com/val/

1 Like

Demo Form 1

1 Like

This topic was automatically closed after 60 days. New replies are no longer allowed.