LINN n/a   IE 4   DOM 1

The LI object reflects the LI element.

 
HTML Equivalent
<LI>
 
Object Model Reference
IE [window.]document.all.elementID
typeNN n/a   IE 4   DOM 1
 Read/Write
 

The manner in which the leading bullets, numbers, or letters of items in the list are displayed. Bullet styles are displayed when the LI element is nested inside a UL element; numbers and letters for an OL element. If your script changes the type for a single LI object, be aware that the change affects all subsequent LI elements in the same list.

 
Example
document.all.instruxListItem3.type = "a"
document.all.point4.type = "square"
 
Value
For an OL style list, possible values are: A | a | I | i | 1. Sequencing is performed automatically as follows:
A
a
I
i
1
Type Example
A, B, C, ...
a, b, c, ...
I, II, III, ...
i, ii, iii, ...
1, 2, 3, ...
For a UL-style list, possible values are: circle | disc | square.
 
Default 1 and disc
valueNN n/a   IE 4   DOM 1
 Read/Write
 

The number of the item within an ordered list. This property applies to an LI element only when it is nested inside an OL element. The default value for unadjusted numbering is always zero. If you set the value property of one item in the list, the following items continue the sequence from the new value.

 
Example
document.all.step5.value = 5
 
Value
Positive integer.
 
Default 0