DHTML Methods
DOM Level 1 Specification.
Restores a form element’s default values.
form.reset ( )
No return value.
The reset method simulates a mouse click on a reset button for the calling form. It performs the same action as a reset button.
The reset method may be called in the following, essentially equivalent ways:
document.formName.reset ( );
document [ 'formName' ] .reset ( );
document.forms [ formIndex ] .reset ( );
FORM
INPUT Reset, submit