[jQuery] Re: Email Validation Dies with 1.3 Upgrade

2009-03-19 Thread Brad
There's a lot more code wrapped around this, I just pulled out the area I know isn't working correctly. On Mar 19, 2:00 pm, MorningZ wrote: > Why so complex with jQuery objects?   simple JavaScript makes much > more sense, plus the fact that ultimately all the "ends with" and > "contains" select

[jQuery] Re: Email Validation Dies with 1.3 Upgrade

2009-03-19 Thread MorningZ
Why so complex with jQuery objects? simple JavaScript makes much more sense, plus the fact that ultimately all the "ends with" and "contains" selectors use basic JavaScript in the end anyways http://paste.pocoo.org/show/108697/ On Mar 19, 12:07 pm, Brad wrote: > Tried it, still doesn't w

[jQuery] Re: Email Validation Dies with 1.3 Upgrade

2009-03-19 Thread Brad
Tried it, still doesn't work. I went through the 1.3 change log and can't find what change could have effected it. On Mar 19, 11:59 am, Jörn Zaefferer wrote: > Remove the @ symbol in the attribute selector, it was deprecated in > 1.2 and removed in 1.3 > > Jörn > > > > On Thu, Mar 19, 2009 at 3:

[jQuery] Re: Email Validation Dies with 1.3 Upgrade

2009-03-19 Thread Jörn Zaefferer
Remove the @ symbol in the attribute selector, it was deprecated in 1.2 and removed in 1.3 Jörn On Thu, Mar 19, 2009 at 3:06 PM, Brad wrote: > > I wrote this function to check an input field. I can fire it when the > field blurs or when the form is submitted. If an .error is visible > when the s

[jQuery] Re: Email Validation

2008-08-28 Thread koolkat
thanks for this - I thought the orginal responder was implying that I could somehow call the jquery email validation on each item. On Aug 28, 2:34 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Seems a simple regular expression test would work. I've used it for > form validation in the past

[jQuery] Re: Email Validation

2008-08-28 Thread [EMAIL PROTECTED]
Seems a simple regular expression test would work. I've used it for form validation in the past. Something like this: emailList = "[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]"; emailArray = emailList.split(",") $.each(emailArray, function(index, item){ item = item.replace(/^

[jQuery] Re: Email Validation

2008-08-28 Thread koolkat
I understand splitting into array, but how do you then call the email validate routine on each item in the array? Thanks. On Aug 25, 1:21 pm, "Hasse R. Hansen" <[EMAIL PROTECTED]> wrote: > I would start with splitting the list of emails, and then loop the > array and in every instance of the loo

[jQuery] Re: Email Validation

2008-08-25 Thread Hasse R. Hansen
I would start with splitting the list of emails, and then loop the array and in every instance of the loop validate the email adress /Hasse On Aug 25, 9:05 pm, koolkat <[EMAIL PROTECTED]> wrote: > Is it possible to use jquery to validate a comma separated list of > emails? If yes, how should thi

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-02-05 Thread Yuval
Hey Jörn - Thank you for fixing this is the next release. I have just submitted a bug report. Please see message: [validate] validator.pendingRequest below 0 (function stopRequest is called when not needed resulting in pendingRequest becoming less than 0) - also submitted a solution. Yuval Karmi

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-02-05 Thread Jörn Zaefferer
Seth - TA schrieb: Jörn - Thanks for doing that. Is 1.2.1 out? I saw in the trunk that the validate.js says 1.2.1pre. Is it usable? Thanks. Yes, it is usable. Unless I get more bug reports I'll release that in one or two days. Let me know if you spot a problem, I should be able to fix it

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-02-04 Thread Seth - TA
Jörn - Thanks for doing that. Is 1.2.1 out? I saw in the trunk that the validate.js says 1.2.1pre. Is it usable? Thanks. Seth On Jan 31, 6:27 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Scott González schrieb:> Please, don't do that. The modified regex you > provided is way over > > simpl

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-01-31 Thread Jörn Zaefferer
Scott González schrieb: Please, don't do that. The modified regex you provided is way over simplified. I'll try to produce the regex you want, it should be as easy as making the domain label required in the host name. 1.2.1 will include email validation that requires the tld, providing the

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-01-31 Thread Scott González
Please, don't do that. The modified regex you provided is way over simplified. I'll try to produce the regex you want, it should be as easy as making the domain label required in the host name. On Jan 30, 7:43 pm, Rus Miller <[EMAIL PROTECTED]> wrote: > I agree, [EMAIL PROTECTED] isn't likely

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-01-30 Thread Rus Miller
I agree, [EMAIL PROTECTED] isn't likely to be used anytime soon in a real- world situation. I've hacked the plugin on line 865 from: return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\? \^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\ $%&'\*\+\-\/=\?\^_`{\|}~

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-01-28 Thread Rus Miller
I noticed this issue too. On Jan 28, 2:15 pm, Yuval <[EMAIL PROTECTED]> wrote: > This email > [EMAIL PROTECTED] > validates perfectly on v1.2. No .com nothing... > Is it broken or is it done on purpose? > I tried it on my site AND on the remember-the-milk demo...