The problem might be that there is a "," after the line "email:
"Please enter a valid email address"".

Try removing the comma and see what happens.

-Tim


On Oct 28, 1:10 pm, MauiMan2 <[EMAIL PROTECTED]> wrote:
> IE7 is telling me the following script has a syntax error and I have
> tried to find it but haven't located it . . . yet:
>
> (function($){
>         $().ready(function() {
>                 // validate the comment form when it is submitted
>                 $("#commentForm").validate();
>
>                 // validate signup form on keyup and submit
>                 $("#signupForm").validate({
>                         rules: {
>                                 email: {
>                                         required: true,
>                                         email: true
>                                 },
>                         },
>                         messages: {
>                                 email: "Please enter a valid email address",
>                         }
>                 });
>         });
>
> })(jQuery);
>
> I'm going to keep looking but maybe somebody else will be able to find
> it before me. Firefox doesn't seem to have a problem with it.

Reply via email to