Skip to content

Releases: rickharrison/validate.js

v1.5.1

25 Jun 17:10
Compare
Choose a tag to compare
Merge pull request #145 from abishekrsrikaanth/master

Adding minified file for validate.js

version 1.4 (04-13-14)

13 Apr 23:52
Compare
Choose a tag to compare

Added depends for conditional validation.

v1.3

19 Aug 01:24
Compare
Choose a tag to compare
  • Fixed an issue where multiple checkboxes could not be validated.
  • There has been an API-breaking change made to callback behavior:
  1. If the required rule is present, a callback will be fired once all other validation rules pass.
  2. If the field is not required and it is empty, the callback will not be called unless condition #3 is met.
  3. A callback will always be called if it is preceded by an '!' i.e. rules: '!callback_myCustomCallback'