HTML DOM Ul Object
Ul Object
The Ul object represents an HTML <ul> element.
Access a Ul Object
You can access a <ul> element by using getElementById():
Create a Ul Object
You can create a <ul> element by using the document.createElement() method:
Ul Object Properties
Property | Description |
---|---|
compact | Not supported in HTML5. Use
style.lineHeight instead. Sets or returns whether the unordered list should render smaller than normal, or not |
type | Not supported in HTML5. Use
style.listStyleType instead. Sets or returns the value of the type attribute of an unordered list |
Standard Properties and Events
The Ul object supports the standard properties and events.
Related Pages
HTML tutorial: HTML Lists
HTML reference: HTML <ul> tag