2.2.2.11 HTMLFormElement

The HTMLFormElement interface specifies that the contained controls take part in a form.

The HTMLFormElement interface has been extended with the following attribute:

The HTMLFormElement interface has been extended with the following methods:

  • item()

  • namedItem()

  • tags()

  • urns()

     //Introduced in Internet Explorer.
     interface HTMLFormElement : HTMLElement {
                 attribute DOMString       encoding;
         Node              item(in unsigned long index);
         Node              namedItem(in DOMString name);
         Node              tags(in DOMString sTag);
         Node              urns(in DOMString sUrn);
     };