[jQuery] JQuery Email Validation does not work

2010-03-01 Thread iceman
Hello I am on JQuery 1.4.1 using validation fromawork by Jörn Zaefferer 1.6 version. I need to send multiple comma separated emails . It fails for the following format FirstName Last Name [firstName dot lastName at xyz dot com] Please guide. Thank You Iceman

[jQuery] Email validation

2009-12-07 Thread Simon Brown
I have been trying to get an email on a form validated. If I use - var email = $("input#email").val(); if (email == "") { $("label#email_error").slideToggle("slow"); $("input#email").focus(); return false; } Everything works fine. But I cannot seem to get it to work with an email expression lik

[jQuery] Re: Jquery Email validation

2009-05-23 Thread in...@reenie.org
One thing I don't understand about your script, is the lack of an extension in "/ajax/emailcheck" Are you using an url rewrite or is some other technique involved? Seems kind of silly to use a rewrite just for the mailcheck, but perhaps one rewrite applies to all "/ajax/.*" jsuggs wrote:

[jQuery] Re: Jquery Email validation

2009-05-22 Thread Bob O
look at the jQuery validation plugin.. its pretty slick. On May 22, 4:06 am, gladrinkz wrote: > is ant one know how can i set email validation in jquery i am > using .net

[jQuery] Re: Jquery Email validation

2009-05-22 Thread jsuggs
The way I do it is to just send the email via ajax to a validation script that returns back an xml response. $("#signup-form #email").blur(function() { $.get("/ajax/emailcheck", { email: $("#email").val() }, function (xml) { if ($('status',xml).text() == 1) { // Available and valid

[jQuery] Jquery Email validation

2009-05-22 Thread gladrinkz
is ant one know how can i set email validation in jquery i am using .net

[jQuery] Email Validation Dies with 1.3 Upgrade

2009-03-19 Thread Brad
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 submit button is clicked, it won't be submitted until they are all gone. When I try to update to 1.3 this function no longer works. jQuery.fn.form_re

[jQuery] Email Validation

2008-08-25 Thread koolkat
Is it possible to use jquery to validate a comma separated list of emails? If yes, how should this be done? Thanks