now I got it working. Thanks.

Birgit

On 4/12/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:


Birgit,

>Thanks Dan, for your fast response!

No problem!

>Is there a way to validate forms with  radio buttons without an
additional
>file, just with the plug-in file and using the simple example?

I prefer the rules method myself (which requires no additional plug-ins)
over the inline attributes.

$(document).ready(
        function(){
                $("#MyForm").validate({
                        rules: {
                                SchoolHasCounselor: {required: true}
                        }
                });
        }
);

I like removing the business logic from the markup, because if you ever
decide to go another route--you don't have to change the markup, just your
business logic.

-Dan


Reply via email to