Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to validate a phone number in javascript. The requirements are:

they should be 10 digits, no comma, no dashes, just the numbers, and not the 1+ in front

this is what I wrote so far

function validatePhone(field,alerttxt) {
    with (field) {
        if(value.length > 10) {
            alert(alerttext);
            return false;
        }
        for(i = 0; i < value.length; i++) {
            if(parseInt(value[i]) == NaN) {
                alert(alerttxt);
                return false;
            }
        }
        return true;
    }
}
function validateForm(thisform) {
        if (validatePhone(phone,"Invalid phone number")==false) {
            phone.focus();
            return false;
        }

    }
}
  <form action="post.php" method="post" id="contactform" onsubmit="return validateForm(this)">
    <ol>
        <label for="phone">Your phone <span class="red"></span></label>
        <input id="phone" name="phone" class="text" />
      </li>
    </ol>
  </form>

but, obviously it doesn't work. How can I write the validatePhone() function so that it works?

share|improve this question
2  
What an unfriendly system. Let people enter spaces and dashes, then ignore them. And what about international phone numbers? – Quentin Mar 5 '10 at 10:43

4 Answers

up vote 10 down vote accepted
phone = phone.replace(/[^0-9]/g, '');
if(phone.length != 10) { 
   alert("not 10 digits");
} else {
  alert("yep, its 10 digits");
} 

This will validate and/or correct based on your requirements, removing all non-digits.

share|improve this answer
Why not just use match? – Marius Mar 5 '10 at 10:47
1  
as I said "validate and/or correct" is why not just match. Its pretty poor user experience to force someone to enter a phone number sans spaces or dashes when they are so easy to remove. – Erik Mar 5 '10 at 10:53
thanks, I really like the 'corrective' regex :-) – Federico Culloca Mar 5 '10 at 11:47

You could use Regular Expressions:

function validatePhone(field,alerttxt) {
    if (field.match(/^\d{10}/)) {
         return true;
    } 
    alert(alerttext);
    return false;
}
share|improve this answer

Fixed function:

function validateForm(thisform) {
        if (validatePhone(thisform.phone,"Invalid phone number")==false) {
            thisform.phone.focus();
            return false;
        }
        return true;
}
share|improve this answer
I forgot to include with(thisform) at the beginning of the function, but actually I wrote it) – Federico Culloca Mar 5 '10 at 13:30
1  
But you also have extra "}" symbol – antyrat Mar 5 '10 at 14:23

use IS_NUMERIC to check the number it return true or false...

Is_Numeric

share|improve this answer
This function is pretty horrible. It will call -6 non-numeric (any negative number, actually), it also fails on 1e4 which should return numeric, and it says 5.5.52 is numeric. – Erik Mar 5 '10 at 14:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.