mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-03-09 15:39:59 +00:00
add files to project
This commit is contained in:
commit
5cac498444
3729 changed files with 836998 additions and 0 deletions
65
web/metronic/global/plugins/jquery-validation/README.md
Normal file
65
web/metronic/global/plugins/jquery-validation/README.md
Normal file
|
@ -0,0 +1,65 @@
|
|||
[jQuery Validation Plugin](http://jqueryvalidation.org/) - Form validation made easy
|
||||
================================
|
||||
|
||||
[](http://travis-ci.org/jzaefferer/jquery-validation)
|
||||
[](https://david-dm.org/jzaefferer/jquery-validation#info=devDependencies)
|
||||
|
||||
The jQuery Validation Plugin provides drop-in validation for your existing forms, while making all kinds of customizations to fit your application really easy.
|
||||
|
||||
## [Help the project](http://pledgie.com/campaigns/18159)
|
||||
|
||||
[](http://pledgie.com/campaigns/18159)
|
||||
|
||||
This project is looking for help! [You can donate to the ongoing pledgie campaign](http://pledgie.com/campaigns/18159)
|
||||
and help spread the word. If you've used the plugin, or plan to use, consider a donation - any amount will help.
|
||||
|
||||
You can find the plan for how to spend the money on the [pledgie page](http://pledgie.com/campaigns/18159).
|
||||
|
||||
## Getting Started
|
||||
|
||||
### Downloading the prebuilt files
|
||||
|
||||
Prebuilt files can be downloaded from http://jqueryvalidation.org/
|
||||
|
||||
### Downloading the latest changes
|
||||
|
||||
The unreleased development files can be obtained by:
|
||||
|
||||
1. [Downloading](https://github.com/jzaefferer/jquery-validation/archive/master.zip) or Forking this repository
|
||||
2. [Setup the build](CONTRIBUTING.md#build-setup)
|
||||
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.
|
||||
|
||||
```html
|
||||
<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.
|
||||
|
||||
```js
|
||||
define(["jquery", "jquery.validate"], function( $ ) {
|
||||
$("form").validate();
|
||||
});
|
||||
```
|
||||
|
||||
For more information on how to setup a rules and customizations, [check the documentation](http://jqueryvalidation.org/documentation/).
|
||||
|
||||
## Reporting issues and contributing code
|
||||
|
||||
See the [Contributing Guidelines](CONTRIBUTING.md) 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](https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address). 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](http://jqueryvalidation.org/jQuery.validator.addMethod/).
|
||||
|
||||
## License
|
||||
Copyright © Jörn Zaefferer<br>
|
||||
Licensed under the MIT license.
|
Loading…
Add table
Add a link
Reference in a new issue