Mega Code Archive

 
Categories / JavaScript Tutorial / Form
 

Reset value

The value property represents the HTML VALUE attribute of the Reset button. <html>     <head>     <title> Example of the reset value property</title>     </head>     <body>     <form name="form1">     Enter Name: <input type="text" Name="name" Size=15>     <br>     Enter Phone: <input type="text" Name="phone" Size=10>     <br><br>     <input type="reset" name=resetbutton value=Reset        onClick='alert("The button value is: " + document.form1.resetbutton.value)'>     <br>     </form>     </body>     </html>