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 |