[jQuery] Re: jQuery Validation Plugin & ASP.NET

2009-03-24 Thread Mac
Hi You are not placing the # in front of the form id as jquery requires. I do that all the time!!! On Mar 24, 12:26 pm, Zach wrote: > I've tried to get this to work for the past 4 hours and I'm stuck. > > I've got a master page with the following scripts added. > >     >     > > this is the f

[jQuery] Re: jQuery Validation Plugin & ASP.NET

2009-03-24 Thread jdobs...@gmail.com
Zach, Try adding rules via the Validate method like so: $(document).ready(function() { $("#aspnetForm").validate({ rules: { TitleField: { minlength: 2 } } }); }); This worked f