Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // US zip code validation method. Depends on jquery validation plugin.
  2. $.validator.addMethod('zipcode', function(value, element) {
  3. // 5 or 9 digits, optional hyphen separator
  4. return this.optional(element) || /^\d{5}(?:-?\d{4})?$/.test(value);
  5. });
Add Comment
Please, Sign In to add comment