Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8769071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:14:18+00:00 2026-06-13T17:14:18+00:00

I have some javascript code like below function mask(eventVal,val){ var len = val.value.length; var

  • 0

I have some javascript code like below

function mask(eventVal,val){
    var len = val.value.length;
    var key = whichKey(eventVal);
    if(key>47 && key<58)
    {   
        if( len==0 )val.value=val.value+'('
        else if( len==4 )val.value=val.value+') '
        else if(len==9 )val.value=val.value+'-'
        else val.value=val.value;
    }
    else{
        val.value = val.value.replace(/[^0-9-]/,'')
        val.value = val.value.replace('--','-')
    }
}

function whichKey(eventVal) {
    var code;
    if (!eventVal) var eventVal = window.event;
    if (eventVal.keyCode) code = eventVal.keyCode;
    else if (eventVal.which) code = eventVal.which;
    return code;
}

HTML

<input type="text" name="PhoneNumber" id="PhoneNumber" value="" onkeydown="mask(event,this)"/>

It is working fine when I am typing phone number like 1234567890 is automatically converting into (123) 456-7890 when I am trying to remove value like remove 0 from the end then formatting is getting ruined completely. like 123) 456-789 and even it is getting ruined when I am click any other place. Can Any one help me to fix it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T17:14:19+00:00Added an answer on June 13, 2026 at 5:14 pm

    check this script..

    <script language="javascript">
    var zChar = new Array(' ', '(', ')', '-', '.');
    var maxphonelength = 14;
    var phonevalue1;
    var phonevalue2;
    var cursorposition;
    function ParseForNumber1(object){
      phonevalue1 = ParseChar(object.value, zChar);
    }
    function ParseForNumber2(object){
      phonevalue2 = ParseChar(object.value, zChar);
    }
    function up(object,e) { 
      if(e){ 
        e = e 
      } else {
        e = window.event 
      } 
      if(e.which){ 
        var keycode = e.which 
      } else {
        var keycode = e.keyCode 
      }
      ParseForNumber1(object)
      if(keycode >= 48){
        ValidatePhone(object)
      }
    }
    function down(object,e) { 
      if(e){ 
        e = e 
      } else {
        e = window.event 
      } 
      if(e.which){ 
        var keycode = e.which 
      } else {
        var keycode = e.keyCode 
      }
      ParseForNumber2(object)
    } 
    function GetCursorPosition(){
      var t1 = phonevalue1;
      var t2 = phonevalue2;
      var bool = false
      for (i=0; i<t1.length; i++)
      {
        if (t1.substring(i,1) != t2.substring(i,1)) {
          if(!bool) {
            cursorposition=i
            window.status=cursorposition
            bool=true
          }
        }
      }
    }
    function ValidatePhone(object){
      var p = phonevalue1
      p = p.replace(/[^\d]*/gi,"")
      if (p.length < 3) {
        object.value=p
      } else if(p.length==3){
        pp=p;
        d4=p.indexOf('(')
        d5=p.indexOf(')')
        if(d4==-1){
          pp="("+pp;
        }
        if(d5==-1){
          pp=pp+")";
        }
        object.value = pp;
      } else if(p.length>3 && p.length < 7){
        p ="(" + p; 
        l30=p.length;
        p30=p.substring(0,4);
        p30=p30+") " 
        p31=p.substring(4,l30);
        pp=p30+p31;
        object.value = pp; 
      } else if(p.length >= 7){
        p ="(" + p; 
        l30=p.length;
        p30=p.substring(0,4);
        p30=p30+") " 
    
        p31=p.substring(4,l30);
        pp=p30+p31;
    
        l40 = pp.length;
        p40 = pp.substring(0,9);
        p40 = p40 + "-"
    
        p41 = pp.substring(9,l40);
        ppp = p40 + p41;
    
        object.value = ppp.substring(0, maxphonelength);
      }
      GetCursorPosition()
      if(cursorposition >= 0){
        if (cursorposition == 0) {
          cursorposition = 2
        } else if (cursorposition <= 2) {
          cursorposition = cursorposition + 1
        } else if (cursorposition <= 4) {
          cursorposition = cursorposition + 3
        } else if (cursorposition == 5) {
          cursorposition = cursorposition + 3
        } else if (cursorposition == 6) { 
          cursorposition = cursorposition + 3 
        } else if (cursorposition == 7) { 
          cursorposition = cursorposition + 4 
        } else if (cursorposition == 8) { 
          cursorposition = cursorposition + 4
          e1=object.value.indexOf(')')
          e2=object.value.indexOf('-')
          if (e1>-1 && e2>-1){
            if (e2-e1 == 4) {
              cursorposition = cursorposition - 1
            }
          }
        } else if (cursorposition == 9) {
          cursorposition = cursorposition + 4
        } else if (cursorposition < 11) {
          cursorposition = cursorposition + 3
        } else if (cursorposition == 11) {
          cursorposition = cursorposition + 1
        } else if (cursorposition == 12) {
          cursorposition = cursorposition + 1
        } else if (cursorposition >= 13) {
          cursorposition = cursorposition
        }
    
        var txtRange = object.createTextRange();
        txtRange.moveStart( "character", cursorposition);
        txtRange.moveEnd( "character", cursorposition - object.value.length);
        txtRange.select();
      }
    
    }
    
    function ParseChar(sStr, sChar)
    {
      if (sChar.length == null) 
      {
        zChar = new Array(sChar);
      }
        else zChar = sChar;
      for (i=0; i<zChar.length; i++)
      {
        sNewStr = "";
        var iStart = 0;
        var iEnd = sStr.indexOf(sChar[i]);
        while (iEnd != -1)
        {
          sNewStr += sStr.substring(iStart, iEnd);
          iStart = iEnd + 1;
          iEnd = sStr.indexOf(sChar[i], iStart);
        }
        sNewStr += sStr.substring(sStr.lastIndexOf(sChar[i]) + 1, sStr.length);
        sStr = sNewStr;
      }
      return sNewStr;
    }
    </script>
    

    HTML:

    <input type="text" name="txtInput" onkeydown="javascript:down(this,event);" onkeyup="javascript:up(this,event);">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code like below in an aspx page: function CheckEditing() { var
I have javascript code some thing like this -- var count=3; var pl=new Array(count);
So I have some code that's like this: <script type=text/javascript> $(document).ready(function() { $(.Hidden).hide(); $(#Unlikely).hide();
I have got some javascript code and I'd like to convert this to C#.
I have simple HTML code with some JavaScript. It looks like: <html> <head> <script
I have this code in javascript below: function ExitPage(){return 'Wait!';} <body onbeforeunload=return ExitPage();> I
I have some javascript code with do while outer loop and switch inner loop,
I have some Javascript code that will programmatically register an COM interop assembly by
I have some JavaScript code that works in IE containing the following: myElement.innerText =
I have some javascript code that creates an img tag with a mouseover callback,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.