I have a simple ajax form and I'm trying to validate that it
- has a value
- that value is a 10 digit number
I'm trying to use RegEx to do so. Here is what I have so far.
var reg = new RegExp("/[0-9]{10}/");
$("#call_form").bind("submit", function() {
if ($("#call_number").val().length < 1 && reg.test($("#call_number").val())) {
$("#call_error").show();
return false;
}
});
I know the problem has to do witht he RegExp as if I remove this portion of the code it validates that the box has a value.
EDIT: Here is the final regex I'm using
var regEx = new RegExp("/[0-9]/");
$("#call_form").bind("submit", function() {
if ($("#call_number").val().length != 10 && !$("#call_number").val().match(regEx)) {
$("#call_error").show();
$.fancybox.resize();
return false;
}
});
EDIT 2 Using the suggestions here is what i'm usign which allows spaces and dashes that then get stripped on check
$("#call_form").bind("submit", function() {
var Phone = $("#call_number").val().replace(/\D+/g,'');
if (Phone.length != 10) {
$("#call_error").show();
$.fancybox.resize();
return false;
}
});
{10}to ensure that it's all numbers. – tjameson Apr 17 '11 at 7:59{10}I should be able to ditch thelength != 10right? or is it better not to? – BandonRandon Apr 17 '11 at 8:04/^[0-9]{10}$/I think is the syntax. – tjameson Apr 17 '11 at 8:07(555)555-5555etc into phone number fields, I personally use555.555.5555all the time when typing my number into forms and hate it when some poorly written regexp denies me... I would suggest not validating the field at all, especially when you must consider+44 02 5555 5555as well... You could also just.replace(/\D+/g,'')on the string to remove all non-numbers then check.length >= 10to ensure at least 10 numbers... – gnarf Apr 17 '11 at 9:19