Open In App

HTML | <form> onreset Attribute

The HTML <form> onreset Attribute is used to specify the form reset fields.

Syntax:



<form onreset = "script">

Attribute Value: This attribute contains single value script which works when onreset event call.

Example:




<!DOCTYPE html > 
<html
    <head
        <title>
            HTML form onreset attribute
        </title
          
        <style
            body { 
                text-align:center; 
            
            h1 { 
                color:green; 
            
        </style
          
        <script
            function Geeks() { 
                alert("Form Reset...") ; 
            
        </script
    </head
      
    <body
        <h1>GeeksforGeeks</h1
        <h2>Form onreset event attribute</h2
      
        <form onreset="Geeks()" style="color:blue";> 
            First Name: <input type="text"></br
            Last Name: <input type="text"></br
            <input type="reset"
        </form
    </body
</html>                    

Output:



Supported Browsers: The browser supported by <form> onreset attribute are listed below:


Article Tags :