Submit a form by sending out an email : Form Submit « Form Control « JavaScript DHTML






Submit a form by sending out an email

   

<html> 

<head> 
<title>Submit and Reset Confirmation</title> 
<script type="text/javascript"> 
function allowReset() { 
    return window.confirm("Go ahead and clear the form?"); 
} 
function allowSend() { 
    return window.confirm("Go ahead and mail this info?"); 
} 
</script> 

</head> 

<body> 
<form method="POST" enctype="text/plain" action="mailto:a@b.com" onreset="return allowReset()" onsubmit="return allowSend()"> 

Enter your first name:
<input type="text" name="firstName" id="firstName"/> 
Enter your last name:
<input type="text" name="lastName" id="lastName"/>
Enter your address:
<input type="text" name="address" id="address"/>
Enter your city:
<input type="text" name="city" id="city" />
<input type="radio" name="gender" id="gender1" checked="checked" />
Male 
<input type="radio" name="gender" id="gender2" />Female
<input type="checkbox" name="retired" id="retired" />I am retired
<input type="reset" /> 
<input type="submit" />
</form> 
</body> 
</html> 

   
    
    
  








Related examples in the same category

1.Form Submit action
2.Return the method used when sending form data
3.Submit a form Via Enter
4.Convert a passed form reference to a string formatted like a JavaScript array of objects
5.Use form select control to trigger the action
6.form on submit event
7.Last-Minute Checking Before Form Submission
8.Use Image to trigger submit and reset actions
9.Adjusting a Server Submission Action
10.Demo: Ajax form submit
11.html input mask