I have huge form that I'd like to split in different steps, but I need to validate the fields in the current step before go to the next step.
E.g.: My form has 40 fields, and they are divided in 4 steps (10 fields each). In the HTML the 40 are in the same page, but with jQuery I only show the first 10 and a next button, the fourth page contains the "Submit" button. I need a way to invoke the validation of those ten fields before go to the next step.
Is there any way to accomplish this?
Regards.