Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 1
2
 
3
17
18
19
20
HTMLOptionsCollection07
21
NIST
22
23
    An HTMLOptionsCollection is a list of nodes representing HTML option
24
    element.
25
    An individual node may be accessed by either ordinal index, the node's
26
    name or id attributes.  (Test ordinal index=0).
27
    The item() method retrieves a node specified by ordinal index. Nodes
28
    are numbered in tree order.  The index origin is 0.
29
 
30
    Retrieve the first SELECT element.  Create a HTMLOptionsCollection.
31
    Retrieve the first item in the list and examine its firstChild's
32
    nodeValue.
33
34
Rick Rivello
35
2002-08-01
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54