function validatedZipCode (inputValue) {
var isCanada = false;
if (isCanada) {
var canadaCodeRegEx = /^[ABCEGHJ-NPRSTVXY]\d[ABCEGHJ-NPRSTV-Z][ -]?\d[ABCEGHJ-NPRSTV-Z]\d$/i;
if (canadaCodeRegEx.test(inputValue)) {
return true;
}
} else {
if (inputValue.indexOf('-') === -1 && inputValue.indexOf(' ') === -1 ) {
if (inputValue.length === 5 && !isNaN(inputValue) && inputValue !== '00000') {
return true;
}
} else {
var splitZip;
if (inputValue.indexOf('-') !== -1) {
splitZip = inputValue.split('-');
} else {
splitZip = inputValue.split(' ');
}
if ( ( splitZip[0].length === 5 && !isNaN(splitZip[0]) && splitZip[0] !== '00000') && ( splitZip[1].length === 4 && !isNaN(splitZip[1]) && splitZip[1] !== '0000') ) {
return true;
}
}
}
return false;
}
Please enter your Zip Code to check the manufacturer approved sales and delivery radius.
Available For Purchase In Store Only
Enter Zip Code
*