[jQuery] Re: Trouble with Validation Firing in ASP.NET

2009-02-13 Thread Jon
You might need to change the id you're searching for to: $(document).ready(function() { $("#aspnetForm").validate({ debug: true }); }); The ID in your code behind always gets changed to 'aspnetForm'. You can check in firebug to make sure you're using the correct ID

[jQuery] Re: Trouble with Validation Firing in ASP.NET

2009-02-13 Thread Jörn Zaefferer
You can add the debug-option for debugging: $(document).ready(function() { $("#form1").validate({ debug: true }); }); Make sure the all necessary files are loaded (via Firebug). Jörn On Fri, Feb 13, 2009 at 4:17 PM, expresso wrote: > > > Here is my code. I have t