Name

Form

Synopsis

                     document.forms[form_number]
document.forms[form_name]
document.form_name
                  

Properties

The Form object defines properties for each of the attributes of the HTML <form> element, such as action, encoding, method, name, and target. In addition, it defines the following properties:

elements[ ]

A read-only array of Input objects representing the elements that appear in the form. The array can be indexed numerically, or by element name for elements that have HTML name attributes defined.

length

The number of elements in the form. Equivalent to elements.length.

Methods

reset( )

Resets each of the input elements of the form to their default values. Returns nothing. JS 1.1.

submit( )

Submits the form, but does not trigger the onsubmit event handler. Returns nothing.

Event Handlers

onreset

Invoked just before the elements of the form are reset. Return false to prevent reset.

onsubmit

Invoked just before the form is submitted. This event handler allows form entries to be validated before being submitted. Return false to prevent submission.

Get Webmaster in a Nutshell, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.