onreset (HTML attribute)
Example
If the
form must have a Reset button, a
good use of the onreset attribute would be to check
whether the user really wanted to clear the form
details:
<form name="frmPersonalDetails" action="/personal.php"
onsubmit="checkPersonalDetails();"
onreset="checkIfReallyWantToReset();"> ⋮ </form>
Description
The
onreset attribute is used only within the context
of forms, and is applied directly to the form element. When the user activates the
form’s Reset button (if indeed it has one), the
event is captured by this attribute, and can be used for whatever purpose
the developer chooses.
Note that this attribute is used less commonly these days. Reset buttons on forms themselves have become increasingly rare, since they make it all too easy to accidentally wipe out all the details the user has spent time entering.
Value
This attribute has no fixed value.
It’s up to the author to decide on the scripting that’s included here, be
that a call to one or more defined functions, or a simple
alert() statement.
Compatibility
| IE | 5.5 | Full |
|---|---|---|
| 6.0 | Full | |
| 7.0 | Full | |
| Firefox | 1.0 | Full |
| 1.5 | Full | |
| 2.0 | Full | |
| Safari | 1.3 | Full |
| 2.0 | Full | |
| 3.0 | Full | |
| Opera | 9.2 | Full |
Every browser listed supports this attribute. However, it should be avoided as it encourages the mixing of content and behavior.
User-contributed notes
There are no comments yet.
Add a note
To post a note on this topic, please log in with your SitePoint username and password. If you don't have an account yet, you can create a new account for free.

