[jQuery] Re: (Validate) - How to apply validations on dynamically generated forms.

2009-08-20 Thread Gustavo Bauermann
Hello !!! I have a problem like these but this solution wasnt enough to solve my problem... if you could help i will be so glad!! Take a look at my code: JS: $(function() { // valida o formulário $('#floculador').each(function(){ $(this

[jQuery] Re: (Validate) - How to apply validations on dynamically generated forms.

2009-07-08 Thread mnaveed
Thanks Jorn, it work fine now...:) On Jul 7, 8:36 pm, Jörn Zaefferer wrote: > $(".commForm").each(function() { >   $(this).validate(); > > }); > > The call tovalidateworks only with the first selected element, so > you have to do an explicit loop. > > Jörn > > On Tue, Jul 7, 2009 at 3:34 PM, m

[jQuery] Re: (Validate) - How to apply validations on dynamically generated forms.

2009-07-07 Thread Jörn Zaefferer
$(".commForm").each(function() { $(this).validate(); }); The call to validate works only with the first selected element, so you have to do an explicit loop. Jörn On Tue, Jul 7, 2009 at 3:34 PM, mnaveed wrote: > > Hi, > I am using the JQuery validation plug in for form validations. My page >