GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DOM_NodeList(3m) Document Object Model DOM_NodeList(3m)

DOM_NodeList - the Document Object Model (DOM) DOM_NodeList interface

#include <domc.h>

typedef struct {
	int length;
	/* other members */
} DOM_NodeList;

DOM_Node *DOM_NodeList_item(DOM_NodeList *this, int index);

The DOM_NodeList type provides access to an ordered collection of nodes. The childNodes member of DOM_Node is a DOM_NodeList. The getElementsByTagName functions also return a DOM_NodeList.

The DOM recommendations specify that these lists are live meaning that modifying the children of a node should be reflected in a list returned by the getElementsByTagName functions.Currently DOMC does not update a DOM_NodeList returned by the getElementsByTagName functions if source nodes are subsequently removed or if a node is added that should be included.

item
The DOM_NodeList_item function returns the node in this list at index which starts from 0.

item
The node at the specified index or NULL if there is no such node.
September 9, 2004 domc-0.8.0

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.