#4066 closed enhancement (invalid)
added postal code field validation for the form validate plugin (for us canadians)
Reported by: | dezwald | Owned by: | joern |
---|---|---|---|
Priority: | minor | Milestone: | 1.3.2 |
Component: | plugin | Version: | 1.3.1 |
Keywords: | validate, validation, form validation | Cc: | |
Blocked by: | Blocking: |
Description
i have created a 2 validation functions to be added to the additional-methods validation plugin script
these function validate postal code and zip code fields
one validates both postal code and zip code in a field
and the other one just validates postal code
jQuery.validator.addMethod("postalzip", function(value, element) {
return this.optional(element) /\d{5}(-\d{4})?$)|([ABCEGHJKLMNPRSTVXY]{1}\d{1}[A-Z]{1} *\d{1}[A-Z]{1}\d{1}$/.test(value);
}, "Your ZIP-code must be in the range 902xx-xxxx to 905-xx-xxxx OR your POSTAL CODE must be in the formart of A9A-9A9 or A9A9A9");
jQuery.validator.addMethod("postalcode", function(value, element) {
return this.optional(element) /[ABCEGHJKLMNPRSTVXY]{1}\d{1}[A-Z]{1} *\d{1}[A-Z]{1}\d{1}$/.test(value);
}, "Your POSTAL CODE must be in the formart of A9A-9A9 or A9A9A9");
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | additional-methods.js added |
---|
comment:1 Changed 13 years ago by
Owner: | set to joern |
---|
comment:2 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Please file plugin bugs with the appropriate author on their bug tracker.
added 2 postal code field validation functions to the additional-methods.js (one checks for a valid postal code or zip code and the other function checks for just a valid postal code)