Close
jGuru Forums
Posted By: Al_Fiori Posted On: Wednesday, February 19, 2003 02:46 AM
i have this function:
function telephoneValidator(formObj) { if (formObj.Telephone.value.length < 10) { alert("Please enter a valid Telephone number. Telephone numbers should be at least 10 digits and no more than 18 digits in length."); formObj.Telephone.focus(); return (false); } return (true); }
Re: Newbie Q - Validation
Posted By: Anonymous Posted On: Wednesday, February 19, 2003 06:44 AM