[jQuery] Re: Declaring Rules in ASP.Net

2008-07-17 Thread Sam Collett
All ASP.NET controls have a ClientID, which matches the ID generated in the HTML, so you should be able to replace: "<% = namePostcode %>" with "<%= namePostcode.Replace(":","\:") %>" and $("[EMAIL PROTECTED]" + <%=chkLinkAccount.ClientID %> + "]") with $("#<%=chkLinkAccount.ClientID %>") --

[jQuery] Re: Declaring Rules in ASP.Net

2008-07-17 Thread Jörn Zaefferer
It looks like your required-implementation is the faulty one. You need to quote the name: $("input[name='...']") Jörn On Thu, Jul 17, 2008 at 8:46 AM, Gregoriusness <[EMAIL PROTECTED]> wrote: > > Hey all, > > I'm trying to implement validation using the Validation plugin on an > ASP.Net (1.1 :(