Jump to content

Validate phone number


Recommended Posts

Hi, You may use the following script:

<SCRIPT LANGUAGE="JavaScript">

function tel()
{
var message = document.getElementById("InsertRecordPhone").value; 

document.getElementById("InsertRecordPhone").value = (message.replace(/[^\d]/g, '')); 

var message1 = document.getElementById("InsertRecordPhone").value;
var tel =message1.substring(0,3);
if (tel!='031'){
alert("Please enter phone number which starts from 031");
return false;
}

}

document.getElementById("caspioform").onsubmit=tel;
</SCRIPT>

 

This function will prevent form from submitting if  phone starts from other numbers. Don't forget to enter your field name instead of mine.

Link to comment
Share on other sites

  • 5 years later...
  • 4 months later...
  • 1 month later...
On 1/21/2023 at 2:15 AM, PotatoMato said:

I am working with the code in the article Potato mentioned.  The problem I found was when using it on an update it wipes out the number that was stored in the database.  Looking for a solution to that now.

Link to comment
Share on other sites

  • 1 month later...
  • 2 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...