Side navigation
#4066 closed enhancement (invalid)
Opened February 04, 2009 05:12PM UTC
Closed February 05, 2010 08:36PM UTC
Last modified March 15, 2012 03:11PM UTC
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");