Cognito-forms – Click next without having to fill out all required fields but not submit until all required fields are filled out

cognito-forms

Do you know of any way that someone can click next without having to fill out all required fields but not be able to click submit until all required fields are filled out?

Best Answer

You could write a script that hides (or disables) the submit button on load, then checks through all the required fields each time a field is changed (through an event listener). After that check, if none of the required fields has a null value, enable the submit button.

As Nadia indicates, this would be outside of the scope of Cognito's built-in features.