jQuery validation engine is a Javascript plugin aimed at the validation of form fields in the browser (IE 6-8, Chrome, Firefox, Safari, Opera 10). The plugin provides visually appealing prompts that grab user attention on the subject matter.
Validations range from email, phone, and URL, to more complex calls such as ajax processing or custom javascript functions. Bundled with many locales, the error prompts can be translated into the language of your choice.
Forum Support: http://validationengine.vanillaforums.com/
Important: v2 is a significant rewrite of the original 1.7 branch. Please read the documentation as the API has changed!
http://www.position-relative.net/creation/formValidator/
The archive holds, of course, the core library along with translations in different languages. It also comes with a set of demo pages and a simple ajax server (built in Java).
- Unpack the archive
- Include the script jquery.validationEngine.closure.js in your page
- Pick the locale of the choice and include it in your page: jquery.validationEngine-XX.js
- Read this manual and understand the API
Most demos are fully functional by simply opening their respective HTML file. However, the Ajax demos require the use of Java6 to launch a lightweight http server.
- Run the script
runDemo.bat
(Windows) orrunDemo.sh
(Unix) from the folder - Open a browser and point it at http://localhost:9173
First include jQuery on your page
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js" type="text/javascript"></script>
Include jquery.validationEngine and its locale
<script src="js/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.validationEngine.js" type="text/javascript" charset="utf-8"></script>
Finally include the desired theme
<link rel="stylesheet" href="css/validationEngine.jquery.css" type="text/css"/>
Validations are defined using the field's class attribute. Here are a few examples showing how it happens:
<input value="[email protected]" class="validate[required,custom[email]]" type="text" name="email" id="email" />
<input value="2010-12-01" class="validate[required,custom[date]]" type="text" name="date" id="date" />
<input value="too many spaces obviously" class="validate[required,custom[onlyLetterNumber]]" type="text" name="special" id="special" />
For more details about validators, please refer to the section below.
Prompt direction can be define using the field's data attribute. Here are a few examples showing how it happens:
<input value="http://" class="validate[required,custom[url]] text-input" type="text" name="url" id="url" data-prompt-position="topLeft" />
<input value="" class="validate[required] text-input" type="text" name="req" id="req" data-prompt-position="bottomLeft" />
<input value="too many spaces obviously" class="validate[required,custom[onlyLetterNumber]]" type="text" name="special" id="special" data-prompt-position="bottomRight" />
The validator is typically instantiated with a call in the following format, the plugin can only be instanciated on form elements:
$("#form.id").validationEngine();
Without any parameters, the init() and attach() methods are automatically called.
$("#form.id").validationEngine(action or options);
The method may take one or several parameters, either an action (and parameters) or a list of options to customize the behavior of the engine.
Here's a glimpse: say you have a form as such:
<form id="formID" method="post" action="submit.action">
<input value="2010-12-01" class="validate[required,custom[date]]" type="text" name="date" id="date" />
</form>
The code below will instantiate the validation engine and attach it to the form:
<script>
When using options, the default behavior is to only initialize ValidationEngine, so attachment needs to be done manually.
<script>
$(document).ready(function(){
$("#formID").validationEngine('attach', {promptPosition : "centerRight", scroll: false});
});
</script>
All calls to validationEngine() are chainable, so one can do the following:
$("#formID").validationEngine().css({border : "2px solid #000"});
Initializes the engine with default settings
$("#formID1").validationEngine({promptPosition : "centerRight", scroll: false});
$("#formID1").validationEngine('init', {promptPosition : "centerRight", scroll: false});
Attaches jQuery.validationEngine to form.submit and field.blur events.
$("#formID1").validationEngine('attach');
Unregisters any bindings that may point to jQuery.validaitonEngine.
$("#formID1").validationEngine('detach');
Validates the form and displays prompts accordingly. Returns true if the form validates, false if it contains errors. Note that if you use an ajax form validator, the actual result will be delivered asynchronously to the function options.onAjaxFormComplete.
alert( $("#formID1").validationEngine('validate') );
Validates one field and displays the prompt accordingly. Returns false if the input validates, true if it contains errors.
alert( $("#formID1").validationEngine('validateField', "#emailInput") );
Displays a prompt on a given element. Note that the prompt can be displayed on any element by providing an id.
The method takes four parameters:
-
the text of the prompt itself
-
a type which defines the visual look of the prompt: 'pass' (green), 'load' (black) anything else (red)
-
an optional position: either "topLeft", "topRight", "bottomLeft", "centerRight", "bottomRight". Defaults to "topRight"
-
an optional boolean which indicates if the prompt should display a directional arrow
Email Show prompt
Closes the prompt linked to the input.
$('#inputID').validationEngine('hidePrompt');
Closes error prompts in the current form (in case you have more than one form on the page).
$('#formID1').validationEngine('hide');
Closes all error prompts on the page.
$('#formID1').validationEngine('hideAll');
Update the form prompts positions.
$("#formID").validationEngine("updatePromptsPosition")
Options are typically passed to the init or attach action as a parameter.
Name of the event triggering field validation, defaults to blur.
Determines if we should scroll the page to the first error, defaults to true.
Where should the prompt show? Possible values are "topLeft", "topRight", "bottomLeft", "centerRight", "bottomRight". Defaults to "topRight".
If set to true, turns Ajax form validation logic on. Defaults to false. Form validation takes place when the validate() action is called or when the form is submitted.
If set, the ajax submit validation will use this url instead of the form action
When ajaxFormValidation is turned on, this is the function that will be called before the asynchronous AJAX form validation call. May return false to stop the Ajax form validation
When ajaxFormValidation is turned on, this function is used to asynchronously process the result of the validation. the status is a boolean. If true, the ajax call completed and all the server side form validations passed.
Set to true when the form shows in a scrolling div, defaults to false.
Selector used to pick the overflown container, defaults to "".
Stop the form from submitting, and let you handle it after it validated via a function
jQuery("#formID2").validationEngine('attach', {
onValidationComplete: function(form, status){
alert("The form status is: " +status+", it will never submit");
}
})
If set, this callback function will be called when all validations passed.
If set, this callback function will be called when it found an error.
Auto update prompt position after window resize, disabled by default
Validators are encoded in the field's class attribute, as follows
Speaks for itself, fails if the element has no value. This validator can apply to pretty much any kind of input field.
<input value="" class="validate[required]" type="text" name="email" id="email" />
<input class="validate[required]" type="checkbox" id="agree" name="agree"/>
<select name="sport" id="sport" class="validate[required]" id="sport">
<option value="">Choose a sport</option>
<option value="option1">Tennis</option>
<option value="option2">Football</option>
<option value="option3">Golf</option>
</select>
At least one of the field of the group must be filled. It needs to be given a group name that is unique across the form.
<input value="" class="validate[groupRequired[payments]]" type="text" name="creditcard" id="creditcard" />
<input class="validate[groupRequired[payments]]" type="text" id="paypal" name="paypal"/>
Validates the element's value to a predefined list of regular expressions.
<input value="[email protected]" class="validate[required,custom[email]]" type="text" name="email" id="email" />
Please refer to the section Custom Regex for a list of available regular expressions.
Validates a field using a third party function call. If a validation error occurs, the function must return an error message that will automatically show in the error prompt.
function checkHELLO(field, rules, i, options){
if (field.val() != "HELLO") {
// this allows the use of i18 for the error msgs
return options.allrules.validate2fields.alertText;
}
}
The following declaration will do
Delegates the validation to a server URL using an asynchronous Ajax request. The selector is used to identify a block of properties in the translation file, take the following for example.
<input value="" class="validate[required,custom[onlyLetterNumber],maxSize[20],ajax[ajaxUserCall]] text-input" type="text" name="user" id="user" />
"ajaxUserCall": {
"url": "ajaxValidateFieldUser",
"extraData": "name=eric",
"extraDataDynamic": ['#user_id', '#user_email'],
"alertText": "* This user is already taken",
"alertTextOk": "All good!",
"alertTextLoad": "* Validating, please wait"
},
- url - is the remote restful service to call
- extraData - optional parameters to send
- extraDataDynamic - optional DOM id's that should have their values sent as parameters
- alertText - error prompt message if validation fails
- alertTextOk - optional prompt if validation succeeds (shows green)
- alertTextLoad - message displayed while the validation is being performed
This validator is explained in further details in the Ajax section.
Check if the current field's value equals the value of the specified field.
Validates when the field's value is less than, or equal to, the given parameter.
Validates when the field's value is more than, or equal to, the given parameter.
Validates if the element content size (in characters) is more than, or equal to, the given integer. integer <= input.value.length
Validates if the element content size (in characters) is less than, or equal to, the given integer. input.value.length <= integer
Checks if the element's value (which is implicitly a date) is earlier than the given date. When "NOW" is used as a parameter, the date will be calculate in the browser. Note that this may be different from the server date. Dates use the ISO format YYYY-MM-DD
<input value="" class="validate[required,custom[date],past[now]]" type="text" id="birthdate" name="birthdate" />
<input value="" class="validate[required,custom[date],past[2010-01-01]]" type="text" id="appointment" name="appointment" />
Checks if the element's value (which is implicitly a date) is greater than the given date. When "NOW" is used as a parameter, the date will be calculate in the browser. Note that this may be different from the server date. Dates use the ISO format YYYY-MM-DD
<input value="" class="validate[required,custom[date],future[now]]" type="text" id="appointment" name="appointment" />
// a date in 2009
<input value="" class="validate[required,custom[date],future[2009-01-01],past[2009-12-31]]" type="text" id="d1" name="d1" />
Validates when a minimum of integer checkboxes are selected. The validator uses a special naming convention to identify the checkboxes as part of a group.
The following example, enforces a minimum of two selected checkboxes
Note how the input.name is identical across the fields.
Same as above but limits the maximum number of selected check boxes.
We've introduced the notion of selectors without giving many details about them: A selector is a string which is used as a key to match properties in the translation files. Take the following example:
"onlyNumber": {
"regex": /^[0-9\ ]+$/,
"alertText": "* Numbers only"
},
"ajaxUserCall": {
"url": "ajaxValidateFieldUser",
"extraData": "name=eric",
"alertText": "* This user is already taken",
"alertTextOk": " * User is valid",
"alertTextLoad": "* Validating, please wait"
},
"validate2fields": {
"alertText": "* Please input HELLO"
}
onlyNumber, onlyLetter and validate2fields are all selectors. jQuery.validationEngine comes with a standard set but you are welcome to add you own to define AJAX backend services, error messages and/or new regular expressions.
Using a datepicker with the engine is problematic because the validation is binded to the blur event. since we lose the focus before any data is entered in the field it creates a weird bug. Fortunately we implemented a fix where we use a delay when a datepicker is binded.
To use this mode you need to add the class datepicker to your input, like this:
<input type="text" id="req" name="req" class="validate[required] text-input datepicker" value="">
The ajax validator takes a selector as an attribute. the selector points to a structure that defines the URL to call, the different messages to display and any extra parameters to add on the URL (when applicable). Please refer to the ajax[selector] description for more details.
Ajax validation comes in two flavors:
- Field Ajax validations, which take place when the user inputs a value in a field and moves away.
- Form Ajax validation, which takes place when the form is submitted or when the validate() action is called.
Both options are optional.
<input value="" class="validate[required,ajax[ajaxUserCall]] text-input" type="text" name="user" id="user" />
You can see a tutorial that makes the use of php here: http://www.position-absolute.com/articles/using-form-ajax-validation-with-the-jquery-validation-engine-plugin/
####Protocol
The client sends the fieldId and the fieldValue as a GET request to the server url.
Client calls url?fieldId=id1&fieldValue=value1 ==> Server
Server responds with an array: [fieldid, status, errorMsg].
Client receives <== ["id1", boolean, errorMsg] Server
- fieldid is the name (id) of the field
- status is the result of the validation, true if it passes, false if it fails
- errorMsg is an optional error string (or a selector) to the prompt text. If no error msg is returned, the prompt message is expected to be part of the rule with key "alertText" or "alertTextOk" (see the structure of the translation file)
####Protocol
The client sends the form fields and values as a GET request to the form.action url.
Client calls url?fieldId=id1&fieldValue=value1&...etc ==> Server (form.action)
Server responds with an array of arrays: [fieldid, status, errorMsg].
-
fieldid is the name (id) of the field
-
status is the result of the validation, true if it passes, false if it fails
-
errorMsg is an error string (or a selector) to the prompt text
Client receives <== [["id1", boolean,"errorMsg"],["id2", false, "there is an error "],["id3", true, "this field is good"]]
Note that normally errors (status=false) are returned from the server. However you may also decide to return an entry with a status=true in which case the errorMsg will show as a green prompt.
####Validation URL By default the engine use the form action to validate the form, you can however set a default url using:
**ajaxFormValidationURL
####Callbacks
Since the form validation is asynchronously delegated to the form action, we provide two callback methods:
onBeforeAjaxFormValidation(form, options) is called before the ajax form validation call, it may return false to stop the request
onAjaxFormComplete: function(form, status, json_response_from_server, options) is called after the ajax form validation call
jQuery.validationEngine comes with a lot of predefined expressions. Regex validation rules are specified as follows:
<input value="" class="validate[custom[email]]" type="text" name="email" id="email" />
Note that the selector identifies a given regular expression in the translation file, but also its associated error prompt messages and optional green prompt message.
a typical phone number with an optional country code and extension. Note that the validation is relaxed, please add extra validations for your specific country.
49-4312 / 777 777
+1 (305) 613-0958 x101
(305) 613 09 58 ext 101
3056130958
+33 1 47 37 62 24 extension 3
(016977) 1234
04312 - 777 777
91-12345-12345
+58 295416 7216
Matches a URL such as http://myserver.com, https://www.crionics.com or ftp://myserver.ws
Easy, an email : [email protected]
An ISO date, YYYY-MM-DD
Floating points with an optional sign. ie. -143.22 or .77 but also +234,23
Integers with an optional sign. ie. -635 +2201 738
An IP address (v4) ie. 127.0.0.1
Only numbers and spaces characters
Only letters and space characters
Only letters and numbers, no space
Validation in overflown div and lightbox with scrollable content
To get the supported mode you need to add these options when instantiating your plugin:
$("#formID").validationEngine({
isOverflown: true,
overflownDIV: ".inputContainer"
})
The big change in this method is that normally the engine will append every error box to the body. In this case it will append every error box before the input validated. This adds a bit of complexity; if you want the error box to behave correctly you need to wrap the input in a div with relative position, and exactly wrap the input width and height. The easiest way to do that is by adding float:left, like in the example provided.
The default top right position is currently the only supported position. Please use this mode only in overflown div and in scollable boxes, it is slower and a bit less stable (I have been using the engine for 2 years, but only one 1 month with this method). Also, the scrolling will be applied to the overflown parent, not the document body.
The plugin provides some hooks using jQuery bind functionality.
- jqv.form.validating : Trigger when the form is submitted and before it starts the validation process
- jqv.field.result(event, field, errorFound, prompText) : Triggers when a field is validated with the result.
- jqv.form.result(event, errorFound) : Triggers when a form is validated with the result
An example of binding a custom function to these events would be:
$("#formID").bind("jqv.form.result", function(event, errorFound) {
if(errorFound) alert("There is a problem with your form");
})
What would a good library be without customization?
Adding new regular expressions is easy: open your translation file and add a new entry to the list
"onlyLetter": {
"regex": /^[a-zA-Z\ \']+$/,
"alertText": "* Letters only"
},
- "onlyLetter" is a sample selector name
- "regex" is a javascript regular expression
- "alertText" is the message to display when the validation fails
You can now use the new regular expression as such
<input type="text" id="myid" name="myid" class="validation[custom[onlyLetter]]"/>
Don't forget to contribute!
Edit the file validationEngine.jquery.css and customize the stylesheet to your liking. it's trivial if you know CSS.
You can easily add a locale by taking jquery.validationEngine-en.js as an example. Feel free to share the translation ;-)
You can, for example, disable the scrolling globally by using $.validationEngine.defaults.scroll = false.
This need to be added before the initialization, one good way to handle this would be to add your settings in a file.
<script src="js/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.validationEngine.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.validationEngine-settings.js" type="text/javascript" charset="utf-8"></script>
- field.id is unique across the page
- for simplicity and consistency field.id and field.name should match (except with minCheckbox and maxCheckbox validators)
- spaces or special chars should be avoided in field.id or field.name
- use lower case for input.type ie. text, password, textarea, checkbox, radio
- validators are evaluated from left to right, use the Ajax validator last e.g. validate[custom[onlyLetter],length[0,100],ajax[ajaxNameCall]]
- please use only one Ajax validator per field!
- JSON services should live on the same server (or you will get into browser security issues)
- in a perfect RESTful world, http GET is used to READ data, http POST is used to WRITE data: which translates into -> Ajax validations should use GET, the actual form post should use a POST request.
Contributions are always welcome, please follow these steps to submit your changes:
-
Install git from http://git-scm.com/
-
Create a github account on https://github.com
-
Set up your git ssh key using these instructions http://help.github.com/set-up-git-redirect
-
Open the jQuery Validation Engine project home page on github on https://github.com/posabsolute/jQuery-Validation-Engine
-
Click the "Fork" button, this will get you to a new page: your own copy of the code.
-
Copy the SSH URL at the top of the page and clone the repository on your local machine
git clone [email protected]:your-username/jQuery-Validation-Engine.git my-jqv-repo
-
Create a branch and switch to it
cd my-jqv-repo
git branch mynewfeature-patch
git checkout mynewfeature-patch -
Apply your changes, then commit using a meaningful comment, that's the comment everybody will see!
git add .
git commit -m "Fixing issue 157, blablabla" -
Push the changes back to github (under a different branch, here myfeature-patch)
git push origin mynewfeature-patch
-
Open your forked repository on github at https://github.com/your-username/jQuery-Validation-Engine
-
Click "Switch Branches" and select your branch (mynewfeature-patch)
-
Click "Pull Request"
-
Submit your pull request to JQV Developers
We offer limited support at http://validationengine.vanillaforums.com/
Licensed under the MIT License
Copyright(c) 2011 Cedric Dugas http://www.position-absolute.com
v2.0 Rewrite by Olivier Refalo http://www.crionics.com