Mega Code Archive

 
Categories / JavaScript Reference / Event Handlers Reference
 

OnReset Example

<html> <body> <p>Input some text in the text field below.</p> <form name="form1"        method="post"        action="" onreset="alert('The form is being reset')">    <input type="text" value="">    <input type="reset" value="Reset"> </form> </body> </html>