Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 77420 of HTMLOptionsCollection

  • Revision slug: DOM/HTMLOptionsCollection
  • Revision title: HTMLOptionsCollection
  • Revision id: 77420
  • Created:
  • Creator: Brettz9
  • Is current revision? No
  • Comment page created, 126 words added

Revision Content

 

HTMLOptionsCollection is an interface representing a collection of HTML option elements (in document order) and offers methods and properties for traversing the list as well as optionally altering its items.

Properties

  • length - As optionally allowed by the spec, Mozilla allows this property to be set, either removing options at the end when using a shorter length, or adding blank options at the end when setting a longer length. Other implementations could potentially throw a DOMException.

Methods

  • item(index) - returns the specific node at the given zero-based index (gives null if out of range)
  • namedItem(name) - returns the specific node with the given DOMString (i.e., string) id. Returns null if no such named node exists.

Specification

 

Revision Source

<p> </p>
<p>HTMLOptionsCollection is an interface representing a collection of HTML option elements (in document order) and offers methods and properties for traversing the list as well as optionally altering its items.</p>
<h3>Properties</h3>
<ul> <li>length - As optionally allowed by the spec, Mozilla allows this property to be set, either removing options at the end when using a shorter length, or adding blank options at the end when setting a longer length. Other implementations could potentially throw a <a href="En/DOM/DOMException" title="En/DOM/DOMException">DOMException</a>.</li>
</ul>
<h3>Methods</h3>
<ul> <li>item(index) - returns the specific node at the given zero-based index (gives null if out of range)</li> <li>namedItem(name) - returns the specific node with the given DOMString (i.e., string) id. Returns null if no such named node exists.</li>
</ul>
<h3>Specification</h3>
<ul> <li><a class=" external" href="https://www.w3.org/TR/DOM-Level-2-HTML/html.html#HTMLOptionsCollection" rel="freelink">https://www.w3.org/TR/DOM-Level-2-HTM...ionsCollection</a></li>
</ul>
<p> </p>
Revert to this revision