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 problem to use jquery Plugin/Validation.

I want to add a method and follow the documentation but I think I still missing some thing.

First I add the method but I think I have a problem to implement it.

please check my code and advice me.

   <script src="js/jquery-1.4.1.js" type="text/javascript"></script>

    <script src="js/jquery.validate.js" type="text/javascript"></script>


    <script type="text/javascript">



        $(document).ready(function() {

        jQuery.validator.addMethod("domain", function(value, element) {
            return this.optional(element) || /^http:\/\/yahoo.com/.test(value);
        }, "Please specify the correct domain for your documents");



            $("#aspForm").validate();
        });

   <asp:TextBox ID="TextBox1" runat="server" CssClass="domain" ></asp:TextBox>


</script>
share|improve this question
Your TextBox1 is in the aspForm right? It's not on the code just like that is it? – JustinP8 Mar 15 '10 at 19:35

1 Answer

up vote 0 down vote accepted

I was able to find the right code for how to implement validation rule: here is the code:

<script src="js/jquery-1.4.1.js" type="text/javascript"></script>

    <script src="js/jquery.validate.js" type="text/javascript"></script>


    <script type="text/javascript">


   //Our validation script will go here.
        $(document).ready(function() {

           jQuery.validator.addMethod("domain", function(value, element) {
            return this.optional(element) || /^http:\/\/yahoo.com/.test(value);
        }, "Please specify the correct domain for your documents");





            //validation implementation will go here.
            $("#aspnetForm").validate({
                rules: {
                    "<%=TextBox1.UniqueID %>": {

                        domain: true
                    }
                }

            });
        })

</script>

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.