[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-04-23 Thread ml2009
thods.email.call(this, value, element); } return valid; }, On Apr 1, 12:14 pm, roryreiff wrote: > ml2009, > > I seem to have it working within the confines of validating multiple > email addre

[jQuery] Re: question about approaching an interactive image gallery

2009-04-23 Thread ml2009
Hi Roryreiff - would these plugins help? http://malsup.com/jquery/cycle/ http://code.google.com/p/agile-carousel/ On Apr 15, 11:43 am, roryreiff wrote: > Hi there, > > I want to start developing a simple interactive image gallery for a > home page. My goal is for it to behave similar to Slide

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-03-02 Thread ml2009
have some and function in > your code as well. > Try something like: > > valid = true; > for(var i in emails) { >     value = emails[i]; >     valid = valid && jQuery.validator.methods.email.call(this, value, > element, param);} > > return valid; > > by(e

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-03-01 Thread ml2009
Hello - wonder if you could help me. I tried another way to validate multiple email addresses, but I still couldn't figure it out. on code below, only the first email is validated. Any suggestions? jQuery.validator.addMethod("multiemail", function(value, element, param) { if (this.optional(ele

[jQuery] Re: Form Validation

2009-02-28 Thread ml2009
se the jquery validation > plugin!http://bassistance.de/jquery-plugins/jquery-plugin-validation/ > > On Feb 27, 9:27 pm, ml2009 wrote: > > > > > I have just started using jQuery and wonder if you could help me > > please. > > > I am working on a form which conta

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-02-28 Thread ml2009
trying to do the same type of validation, but it didn't work for me. Could you please help? multiemail: function(value, element) { if (this.optional(element)) // return true on optional element return true; var emai

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-02-28 Thread ml2009
trying to do the same type of validation, but it didn't work for me. could you please help? multiemail: function(value, element) { if (this.optional(element)) // return true on optional element return true; var emails = value.split(','); var valid = (value.length >

[jQuery] Form Validation

2009-02-27 Thread ml2009
I have just started using jQuery and wonder if you could help me please. I am working on a form which contains a field to enter multi-email addresses. How could I validate this field using jQuery? This is what I would do if I were not using the jQuery library function multiEmail(my_emails) {