Skip to content

Instantly share code, notes, and snippets.

@blooski
Created March 28, 2014 20:17
Show Gist options
  • Save blooski/9842066 to your computer and use it in GitHub Desktop.
Save blooski/9842066 to your computer and use it in GitHub Desktop.
Validate Zip Code
function validateZip (zipval)
{
var isValid = /^[0-9]{5}(?:-[0-9]{4})?$/.test(zipval);
return isValid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment