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
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
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:
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
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
is ant one know how can i set email validation in jquery i am
using .net
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
Is it possible to use jquery to validate a comma separated list of
emails? If yes, how should this be done?
Thanks
8 matches
Mail list logo