Results 1 to 3 of 3

Thread: email validation

  1. #1
    Join Date
    Jul 2003
    Location
    Birmingham
    Posts
    1

    Question email validation

    I'm after a bit of javaScript to validate email address.
    Can anyone can help?

  2. #2
    Join Date
    Mar 2003
    Posts
    7
    Perhaps something as simple as checking for an '@' and at least a '.' would work?

    if (document.billing.Email.value != "")
    if (document.billing.Email.value.indexOf('@',0) == -1 ||
    document.billing.Email.value.indexOf('.',0) == -1)
    error += "Please enter a valid email address of the form [email protected]." + "\n";

  3. #3
    Join Date
    Jul 2003
    Posts
    5
    Well, when I want to 'fake' my email I usually just type in
    [email protected]
    or some other random keystrokes.
    You can actually verify a persons email using a SOAP based webservice. It sends a quick check to lkjfgh.com to make sure that the domain exists and that sfakhg has an email account with them

    Can't fool it unless you give it someone else's correct email address

    Try it
    http://beta2.eraserver.net/webservic...?op=CheckEmail

    John

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •