all! There is a form (not a contact form 7) with two inputs. When someone fills out this form and clicks on submit button I need the new form (CF7) to pop-up with inputs already filled in with the values from the previous form and with more new inputs to fill out. So, how can I send the variables from the first form to the second one? Any ideas? Or maybe there is another solution?
You can catch the submit event.
Prevent default.
Get the data in the form elements.
Fill the data to DOM.
--or--
Just make a fake button writes submit on it.
Catch click event and do the same.
Create the new form with the new data.