Skip to content

RFTaurus/jquery-validation

This branch is 143 commits behind jquery-validation/jquery-validation:master.

Folders and files

NameName
Last commit message
Last commit date
Mar 17, 2016
Dec 6, 2016
Apr 12, 2017
Dec 1, 2016
Apr 18, 2017
Apr 18, 2017
Jan 16, 2014
Jan 16, 2014
Oct 17, 2014
Oct 17, 2014
Jan 23, 2014
May 27, 2014
Jul 22, 2016
Apr 7, 2017
Dec 2, 2016
Jun 16, 2015
Apr 7, 2017
Apr 7, 2017
Dec 2, 2016
Apr 7, 2017
Apr 7, 2017

Repository files navigation

jQuery Validation Plugin - Form validation made easy

Build Status devDependency Status

The jQuery Validation Plugin provides drop-in validation for your existing forms, while making all kinds of customizations to fit your application really easy.

Getting Started

Downloading the prebuilt files

Prebuilt files can be downloaded from https://jqueryvalidation.org/

Downloading the latest changes

The unreleased development files can be obtained by:

  1. Downloading or Forking this repository
  2. Setup the build
  3. Run grunt to create the built files in the "dist" directory

Including it on your page

Include jQuery and the plugin on a page. Then select a form to validate and call the validate method.

<form>
	<input required>
</form>
<script src="jquery.js"></script>
<script src="jquery.validate.js"></script>
<script>
$("form").validate();
</script>

Alternatively include jQuery and the plugin via requirejs in your module.

define(["jquery", "jquery.validate"], function( $ ) {
	$("form").validate();
});

For more information on how to setup a rules and customizations, check the documentation.

Reporting issues and contributing code

See the Contributing Guidelines for details.

IMPORTANT NOTE ABOUT EMAIL VALIDATION. As of version 1.12.0 this plugin is using the same regular expression that the HTML5 specification suggests for browsers to use. We will follow their lead and use the same check. If you think the specification is wrong, please report the issue to them. If you have different requirements, consider using a custom method. In case you need to adjust the built-in validation regular expression patterns, please follow the documentation.

License

Copyright © Jörn Zaefferer
Licensed under the MIT license.

About

jQuery Validation Plugin library sources

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 95.3%
  • HTML 4.7%