HTMLOptions DOM interface

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

  public int     getLength();
  public HTMLOptionElement 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