Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 5 users online
 o Most users online: 67
 o Home
  o Javascripts
   o Email
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o designplace
 o Free Wedding Websites
 o Wedding Vendor Directory
 o OxyScripts
 o Open Source Design
 o devnet

Email address validation (Rated 4)

Description:

Check email contain only valid characters, this script does not check that the email address is real, only that it contains valid characters and is of the a correct form, eg: 'me@home.com'. This code does not match all legal email address variations, just the one you want the person to enter.

Code starts here


<script language="JavaScript">
<!--
re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/

function ValidateForm(theForm)
{
if (re.test(theForm.Email.value) == false)
{
alert("Please a vaild email address in the \"Email\" box.");
theForm.Email.focus();
return (false);
}

return (true);
}

//-->
</script>

Last Edited: 1046135475


Submitted by Mat on 25-02-2003 1:11


Rate This Script

User Contributed Comments

On 23-02-2003 23:58 Devscripts said:

Its advisable to check details serverside as well incase the user has Javascript turned off, as no checks will be performed.


Registered Members login
© Copyright 2003 - Devscripts.net