Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a phoneTextBox control, which contains 4 TextBoxes:

country code (1-3 digits), city code (1-7 digits), local number (1-7 digits) and extra phone number (1-5 digits).

The extra phone number is not required.

The code below doesn't work.

    <script type="text/javascript">
    function ValidatePhoneNumber(source, args) 

    {
        if (     $('#<%=txtCountryCode.ClientID %>').val().match(/^\d{1,3}$) ||
                 $('#<%=txtCityCode.ClientID %>').val().match(/^\d{1,7}$) ||
                 $('#<%=txtMainPhoneNumber.ClientID %>').val().match(/^\d{1,7}$)
           )


        {
            if ($('#<%=txtExtraPhoneNumber.ClientID %>').val().length<=0)
            {
               args.IsValid = true;
               return;
            }
            else 
            {
                if ($('#<%=txtExtraPhoneNumber.ClientID %>').val().match(/^\d{1,5}$)
                {
                    args.IsValid = true;
                   return;

                }
                else 
                {
                    args.IsValid = false;

                }

            }
        }
        else 
                {
                    args.IsValid = false;

                }

}
</script>
    <div style="display: inline">
        <asp:CustomValidator runat="server" ForeColor="Red" ErrorMessage="Invalid format" ClientValidationFunction="ValidatePhoneNumber" />
        <div>
            <b>+</b><asp:TextBox ID="txtCountryCode" runat="server" Width="30px" MaxLength="3"></asp:TextBox>
            <asp:TextBox ID="txtCityCode" runat="server" Width="60px" MaxLength="7"></asp:TextBox>
            <asp:TextBox ID="txtMainPhoneNumber" runat="server" Width="60px" MaxLength="7"></asp:TextBox>
            <asp:TextBox ID="txtExtraPhoneNumber" runat="server" Width="50px" MaxLength="5"></asp:TextBox>
        </div>
    </div>
share|improve this question
1  
You have use wrong selectors. Try this: $("#<%=txtCountryCode.ClientID %>"). And also there are missed closed slash in regex expressions. – Yuriy Rozhovetskiy Jul 1 '11 at 10:13
Yeah. You are right. But the error is "Uncaught SyntaxError: Invalid regular expression: missing /" – Alexandre Jul 1 '11 at 10:18

2 Answers

up vote 2 down vote accepted
    args.IsValid = $('#<%=txtCountryCode.ClientID %>').val().match(/^\d{1,3}$/) &&
                 $('#<%=txtCityCode.ClientID %>').val().match(/^\d{1,7}$/) &&
                 $('#<%=txtMainPhoneNumber.ClientID %>').val().match(/^\d{1,7}$/) &&
$('#<%=txtExtraPhoneNumber.ClientID %>').val().match(/^\d{0,5}$/);
share|improve this answer

you are missing to end all the regex with /

share|improve this answer

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.