Chapter 3 DynaScript Predefined Objects
The DOMNamedNodeMap
object
has these properties:
DOMNamedNodeMap.length
The number of objects in the map.
This example loops over the items of a DOMNamedNodeMap
object.
for ( i = 0; i < nodemap.length; i++ ){
// operations here
}
Copyright © 1999 Sybase, Inc. All rights reserved. |