[jQuery] Re: Validate plugin not working

2009-03-24 Thread jdobs...@gmail.com
Perhaps it says somewhere in the doc that the name attribute is required but I sure as hell couldn't find it. Anyway try adding the name attribute with the same value as your id attribute for each form element. You should be relieved by what you find ;) On Mar 23, 3:29 pm, Brendon Gleeson

[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