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
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
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
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
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
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
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 >
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) {
8 matches
Mail list logo