Side navigation
#4065 closed enhancement (duplicate)
Opened February 04, 2009 05:12PM UTC
Closed February 05, 2009 12:16AM UTC
added postal code field validation for the form validate plugin (for us canadians)
Reported by: | dezwald | Owned by: | |
---|---|---|---|
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 (0)
Change History (1)
Changed February 05, 2009 12:16AM UTC by comment:1
resolution: | → duplicate |
---|---|
status: | new → closed |
Dup of #4066 which has the attachments.