Page Breaks Without Requirement to Fill In All Fields

  • rfkrfk
    Asked on February 13, 2017 at 12:29 AM

    Is it possible to insert a Page Break/Next button without the requirement to have filled in all fields on a current page to move on to next page?

    Thanks

  • Support_Management Jotform Support
    Replied on February 13, 2017 at 4:24 AM

    What you can do is add the Form Tabs widget to your form. This widget allows navigation without validation.

    Related guide: How-to-Add-a-Widget-to-your-Form 

    Then, just hide it with CSS so you're left with your usual Back / Next buttons. Your respondents will see the errors as they navigate each page but they CAN go back and forth anytime they want. Just keep in mind that even with this widget, ALL fields on ALL pages will still be validated at the end.

    Page Breaks Without Requirement to Fill In All Fields Image 1 Screenshot 40

    The key setting here is the Allow navigation without validation option:

    Page Breaks Without Requirement to Fill In All Fields Image 2 Screenshot 51

    Lastly, hide the tabs with CSS:

    Page Breaks Without Requirement to Fill In All Fields Image 3 Screenshot 62

    Here are the CSS codes:

    #tabs-list {

         display: none;

    }