TOC PREV NEXT INDEX

Put your logo here!


forms


forms returns a list of the FORM elements within the current document.

Syntax

form_list = document.forms 

Parameters

form_list is a nodeList of FORM elements.

Example

<form id="marjoree"> 
<input
   type="button"    onclick="alert(document.forms[0].id);"/> 
</form> 

Notes

None.

Specification

html


mozilla.org | mailto:oeschger | bug 93108
TOC PREV NEXT INDEX