>>How to change the default position of an error message in Jquey form 
>>validation plugin?

This is easy to do. Just create a label element where you want the
error message to appear. If the field you are validating is called
"foo" your label would look like:

<label for="foo" class="error">This field is required</label>

You must put class="error" or if you have overridden the default error
class name you should set it to whatever you changed it too. You also
need to have the error message in the label as validate will now
ignore whatever is defined in the messages config (i think??).

You can put that label anywhere on the page... probably still has to
be inside the form.

Reply via email to