0

I'm using jquery validation and would like customize the error messages that are displayed.

By default the validation errors appear to the right the input fields. I specifically would like to have all the errors to appear at the top of the page in a styled div we have been using.

Is this possible with library or would it be a better option to just write my own validation stuff this situation?

Any thoughts? Thanks.

1

1 Answer 1

1

Hi Ray I'm sure you've found it by now but if not, this can be done using the errorLabelContainer option. See jquery.validation docs.

e.g.

$("#myform").validate({
  errorLabelContainer: "#messageBox"
  });
Sign up to request clarification or add additional context in comments.

1 Comment

Thanks Rich. Yeah, not a lot of exposure... only 12 views.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.