Email form validation : Form Validation « Form Control « JavaScript DHTML






Email form validation

  
<html>
<head>
<title>JavaScript E-mail-form interface</title>
<script language="JavaScript">
<!--
  function sendMail() {
    if (document.forms[0].recipient.value == "") {
       alert("No recipient has been specified!");
       return false;
    }
    if (document.forms[0].message.value == "") {
       alert("No message has been entered!");
       return false;
    }
    if (document.forms[0].subject.value == "") {
       document.forms[0].subject.value = "No subject";
       return false;
    }
    document.forms[0].action = "mailto:" +document.forms[0].recipient.value + "?subject=" + document.forms[0].subject.value;
    return true;
  }
//-->
</script>
</head>
<body>
<basefont size=3>
<h2>E-mail form<hr></h2>
<b>send mail</b> button.<p>
<form method="post" enctype="text/plain">
<table border=0>
<tr>
<td align="right"><b>To:</b></td>
<td><input type="text" name="recipient" size=60>
</td>
</tr>
<tr>
<td align="right"><b>Subject:</b></td>
<td><input type="text" name="subject" size=60></td>
</tr>
<tr valign="top">
<td><textarea name="message" rows=4 cols=60></textarea></td>
</tr>
</table>
<hr>
<input type="submit" value="Send mail" onClick="sendMail()">
</form>
</body>
</html>


           
         
    
  








Related examples in the same category

1.Form Validator: time, date email, phone number, age etc
2.Form Validate: is blank, is digit and is integer
3.Log in form validation
4.Log in email validation
5.Comprehensive form validation
6.Illegal sub string validation
7.Form Validator
8.Form valiation for empty data, file name
9.Email Address Validate
10.Time Validate
11.URL Validate
12.Use JavaScript to check the password input
13.Form value validation and onsubmit action
14.Check form input value and alert user by change the control background