Disclaimer: This site is moderated by the Formidable Forms community. Formidable Forms and its parent company Strategy11 are not responsible for the words, opinions, and content posted by others on this site. This site is provided as a courtesy and free resource for the Formidable Forms Community. Any actions deemed as harassment, toxic or abusive, will result on being banned from this site and potentially losing your Formidable Forms license.
Thanks for your cooperation, if you have any questions please
consult our code of conduct
Ranjeet, did you ever get an answer to this? I'm trying to do something similar.
<p>Just Victor's response below. As a workaround, I put some javascript in Formidable / My Form / Settings / Customize HTML / After Fields to post the fields to another form when the user clicks "Next". <script>document.addEventListener('DOMContentLoaded', function() { // Select the button using its class name const nextButton = document.querySelector('.frm_button_submit[formnovalidate="formnovalidate"]'); // Add event listener to the button if (nextButton) { nextButton.addEventListener('click', function(event) { // save fields to another form } else { console.error('Next button not found'); }; });</script></p>
Thanks for the response - this is helpful. I've been looking for an action that fires when the user submits the first page of a multi-part form. I may try something like.