HTML | onreset Event Attribute
The onreset event attribute in HTML is triggered when reset the form. This Attribute works with form tag.
Supported Tags:
Syntax:
<form onreset = "script">
Attribute Value: This attribute contains single value script which works when onreset event call.
Example:
html
<!DOCTYPE html > < html > < head > < title >onreset event attribute</ title > < style > body { text-align:center; } h1 { color:green; } </ style > < script > function Geeks() { alert("Form Reset...") ; } </ script > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >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 Browser: The browser supported by onreset event attribute are listed below:
- Google Chrome 1
- Edge 12
- Internet Explorer 9
- Opera 12.1
- Firefox 6
- Safari 3
Please Login to comment...