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. All elements in this collection can be referred to by index and all siblings by means of an enumerator or for( ... in ... ) loop. However you can access them directly with this property.
Accessing the next object in the collection belonging to the parent by means of this property is more convenient than traversing back to the parent and working through the children property's collection.
The next sibling will be the object following this one in the children property's collection of the same parent element.
If there is no next sibling then the null value will be returned.
Prev | Home | Next |
Element.mergeAttributes() | Up | Element.nodeName |
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. |