The Element objects are instantiated as the HTML tags are parsed within the document source. They are added to several collections and can be navigated in a variety of ways.
Each Element object has an array of Element objects considered to be its direct descendants (that is children). This collection will not contain its children's children. The last element in this collection can be referred to by index and its siblings by means of an enumerator or for( ... in ... ) loop. However you can access it directly with this property.
Accessing the object at the end of the collection with this property is more convenient than measuring the length of the collection and accessing by array index.
If the element has no children, then this property will contain a null value.
Prev | Home | Next |
Element.language | Up | Element.mergeAttributes() |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |