I have a multi-page form with conditional logic on the pages. I want to have a link on the last page that goes back to the first page and resets all form inputs after page 2 or reset the whole form if that is not possible. I currently have a click event that will show the first page using the jQuery/javascript below. But clicking the next button submits the form instead of going to page 2. Is there some way to tell gravity forms we’re back on the first page?
$(‘.gform_page:eq(0)’).show();
$(‘.gform_page:not(:eq(0))’).hide();
