Skip to content

Add traslation Spanish #213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 53 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
fe07dc3
Finalized the 1.0 release.
rickharrison Oct 17, 2011
61c95a7
Added the website assets.
rickharrison Oct 17, 2011
dc1e75a
Added the minified version.
rickharrison Oct 17, 2011
f923e06
Changed some of the list styling.
rickharrison Oct 17, 2011
e874a76
Merged master into gh-pages.
rickharrison Oct 17, 2011
c6e9696
Fixed a typo in a code sample.
rickharrison Oct 17, 2011
e037a47
Added some info about how to call setMessage.
rickharrison Oct 17, 2011
c3e8e61
Fixed a few typos.
rickharrison Oct 17, 2011
6123709
Added google analytics.
rickharrison Oct 17, 2011
c7102bf
Merge branch 'master' into gh-pages
rickharrison Oct 17, 2011
35da47e
Adding IDs to the example input elements so that the labels work corr…
treyp Oct 17, 2011
1c43b40
Changed everything to FormValidator.
rickharrison Oct 17, 2011
3ee174a
Fixing double name attribute on password_confirm field
treyp Oct 17, 2011
d0f3be5
Merge pull request #1 from treyp/gh-pages
rickharrison Oct 17, 2011
4f9a2c4
Fixed some typos in the callback documentation.
rickharrison Oct 18, 2011
db0fc9e
Merge branch 'gh-pages' of github.com:rickharrison/validate.js into g…
rickharrison Oct 18, 2011
5bcee0b
Added a checkbox to the example.
rickharrison Oct 24, 2011
44108d2
new rules documented
navruzm Nov 20, 2011
44c4876
Added github buttons to the main page.
rickharrison Nov 28, 2011
17cbedc
Merge pull request #10 from navruzm/gh-pages
rickharrison Dec 20, 2011
bd33f20
Merge branch 'master' into gh-pages
rickharrison Dec 20, 2011
dcf988a
Updated minified verison for 1.0.2.
rickharrison Dec 20, 2011
431bea6
Added release notes for 1.0.2.
rickharrison Dec 20, 2011
ac36311
Added a note about having your js at the bottom of the page.
rickharrison Jan 17, 2012
c5c67ca
Fixed a typo in the documentation.
rickharrison May 16, 2012
a223dc4
Fixed the github fork ribbon.
rickharrison May 16, 2012
4ae8479
Merge branch 'master' into gh-pages
rickharrison May 18, 2012
c42ca57
Updated the docs for version 1.1
rickharrison May 18, 2012
b822597
Fixed the github buttons.
rickharrison Aug 14, 2012
9f95ddb
Added the new validation methods to the site.
rickharrison Jan 20, 2013
072088c
Merge branch 'master' into gh-pages
rickharrison Jan 20, 2013
9c71021
Updated release notes for 1.2
rickharrison Jan 20, 2013
9d5c27c
Merge branch 'master' into gh-pages
rickharrison Mar 17, 2013
bd90c2b
Updated documentation for valid_url.
rickharrison Mar 17, 2013
1685d8c
Added release notes for 1.2.1.
rickharrison Mar 17, 2013
d9de423
Merge branch 'master' into gh-pages
rickharrison Mar 17, 2013
72ef176
Updated minified version to 1.2.1.
rickharrison Mar 17, 2013
efb5cfc
Merge branch 'master' into gh-pages
rickharrison Mar 28, 2013
babf0f6
Updated release notes for 1.2.2.
rickharrison Mar 28, 2013
c3798be
Fixed a typo in the decimal rule.
rickharrison Apr 18, 2013
054e3f2
Added a note to the docs.
rickharrison Jun 20, 2013
1a7ff5e
Updated the documentation for 1.3.
rickharrison Aug 19, 2013
1d2298a
Updated the minified verison for 1.3.
rickharrison Aug 19, 2013
3a76c36
Updated file sizes.
rickharrison Aug 19, 2013
69c30a8
Fixed an issue with github star count.
Apr 1, 2014
c4426f1
Added documentation for conditional field validation
sammylupt Apr 6, 2014
96bee41
Merge branch 'gh-pages' of https://github.com/scottluptowski/validate…
Apr 13, 2014
53f0a80
Updated styling on depends docs.
Apr 13, 2014
eb447d3
Updated to version 1.4
Apr 13, 2014
b04101f
Updated to 1.4.1
Aug 20, 2014
b74adc7
Updates documentation for 2.0.0
Sep 21, 2015
3bee3e3
Updates built files for 2.0.1
Jan 19, 2016
6524522
Create traslation Spanish
DuckHunter213 Jul 10, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The text of this license is provided below:
MIT License
-----------

Copyright (C) 2011 - 2013 by Rick Harrison, http://rickharrison.me
Copyright (C) 2011 - 2014 by Rick Harrison, http://rickharrison.me

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ validate.js is a lightweight JavaScript form validation library inspired by Code
- Customizable Messages
- Supply your own validation callbacks for custom rules
- Chainable customization methods for ease of declaration
- Conditionally validate certain form fields
- Works in all major browsers, (even IE6!)
- Modeled off the CodeIgniter form validation API

Expand All @@ -30,7 +31,10 @@ validate.js is a lightweight JavaScript form validation library inspired by Code
rules: 'required|matches[password]'
}, {
name: 'email',
rules: 'valid_email'
rules: 'valid_email',
depends: function() {
return Math.random() > .5;
}
}, {
name: 'minlength',
display: 'min length',
Expand Down
Binary file added assets/background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading