I know that he was asked many times, but so far no one could find a solution.
The idea is to split one form into several steps and check each step the next time you press a button. I know that the jquery validation plugin offers a rather sophisticated way to do this with an accordion, but can anyone come up with a simple solution, something like
var stepOne = {
rules: {
fieldname1: "required",
fieldname2: "required",
}
}
$("form").validate(stepOne);
hope someone can suggest a better way to do this.
Thank.
source
share