Can anybody help me? I am performing validation using jquery validation engine related existing file. Now I got the validation message that they have hard-coded in their existing file. I want to show some custom message without modifying the existing file. Can I implement custom error message with the existing jquery validation engine file or I have to go for my own implementation?
How to give Custome Error Message while using Jquery Validation Engine related Existing file
1.7k Views Asked by user3064530 At
3
There are 3 best solutions below
0

Try Below Link.. May be You find what you want http://posabsolute.github.io/jQuery-Validation-Engine/
1

I got the jQuery custom errors to work on my project. jQuery ValidationEngine Custom error messages
Good luck, deerhaq
Honestly, it is so easy to write your own that if you wish custom messages, I would strongly endorse "rolling your own" solution.
Here is an example of a very simple validation to get you started. Note the use of an array
arrAll
to hold the field names/descriptions that must be validated.jsFiddle Demo
HTML:
javascript/jQuery:
Here is another example: http://jsfiddle.net/J9wGx/3/
Note that the above solutions utilize jQuery, so you must reference the jQuery library in the document (usually in the
<head>
tags), like this: