I have a form that is broken into several screens. Although it is a single form, because of its size I am using jQuery to visually break it into several smaller sections.
There is a simple link to navigate to the "next section" which triggers a div show/hide.
I would like to validate each section as the user proceeds, rather than on submit at the end.
I'm using the jQuery plugin located here:
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
While it's clear how to validate the form as a whole, I am finding it hard to understand how I might attach a validate function to a handful of selected inputs on a link click. If it validates, then the show/hide function would proceed them to the next part.