Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
phoneNo="222 222-2222"
if (phoneNo.match(/^\d\d\d\-\d\d\d-\d\d\d\d$/)) alert("its good")
else alert("no good")
<script>
function checkForm() {
//check for phone number here...
phoneNo=document.getElementById("phone").value
if (phoneNo.match(/^\d\d\d\-\d\d\d-\d\d\d\d$/)) return true;
else {
alert("Please check your phone number")
return false
}
}
</script>
<form method="get" action="url" onsubmit="return checkForm()">
<input type="text" id="phone">
...
<input type="submit">
</form>