HTMLFormControlsCollection DOM interface

A collection of form controls
interface HTMLFormControlsCollection {
  readonly attribute unsigned long length;
  Element item(in unsigned long index);
  Element namedItem(in DOMString name);
};
in Java:
public interface HTMLFormControlsCollection {

  public int     getLength();
  public HTMLElement item(int index);
  public Object namedItem(String name);

};

Previous | Next | Top | Cafe con Leche

Copyright 2007 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified February 4, 2007