KatherineF
Technical User
var valid = "0123456789-";
var hyphencount = 0;
var zipcode_fields = new Array(2);
zipcode_fields[0] = document.form.fld_ZipCode.value;
zipcode_fields[1] = document.form.fld_ServiceZipCode.value;
for (var j=0; j < zipcode_fields.length; j++)
temp = "" + zipcode_fields.substring(j, j+1);
if (temp == "-") hyphencount++;
if (valid.indexOf(temp) == "-1") {
alert("Invalid characters in your zip code. Please try again.");
event.returnValue = false;
}
var hyphencount = 0;
var zipcode_fields = new Array(2);
zipcode_fields[0] = document.form.fld_ZipCode.value;
zipcode_fields[1] = document.form.fld_ServiceZipCode.value;
for (var j=0; j < zipcode_fields.length; j++)
temp = "" + zipcode_fields.substring(j, j+1);
if (temp == "-") hyphencount++;
if (valid.indexOf(temp) == "-1") {
alert("Invalid characters in your zip code. Please try again.");
event.returnValue = false;
}