I’m trying to create a 3 page wizard to break up a long form. I’ve created a link block and dropped the form fields into a column.
When I add a button to continue, there’s no way to validate if the user has entered data into the fields, the button just pushes them through to the next step. Also if I use a form button, there’s no option to validate and push users through to another page, just a confirmation.
Is there an option to validate that a response has been entered in a form field and move on, or is a work around required?
@grandtheftpixel what you can also do is have a link inside the Success, so when they fill out the required fields and they press Submit, the success div will show up with a link to another page with the next form.
Thanks @thesergiethat is a great idea, I’ll give that shot
Thanks also @bartekkustra! This is really interesting. So basically what would happen is the form would slide across from one step/page to the next, is that correct? How would I set this up?
I’d make eg. 3 divs inside one div with specified width and height. At the end of each div I’d make next and previous buttons that will allow me to slide from one page to another. When button is pressed you can simply check if fields stated above are filled with some jQuery function.
I’m sure you’ll find out how to set it up You can switch from one step to another using simple .fadeIn() and .fadeOut() functions. Imagination is your limit