Form Wizard
jQuery Stepy Form To Wizard
Turn any long form into a wizard by breaking it into fieldsets. Wizards allow users to follow a progression and increase engagement by making seemingly longer tasks smaller.
Simple Wizard
You can turn any simple form into a wizard with just one line of code! See it in action...
<form id="basicwizard"> <fieldset title="Step 1"> <legend>No Validation</legend> ... </fieldset> <fieldset title="Step 2"> <legend>Just Text</legend> ... </fieldset> </form>
Wizard with Validation
The wizard has jQuery Validation plugin support built-in. All you need to do is turn on the validate: true
option on and you instantly have a wizard with form validation!