HTML DOM Ul Object
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
HTML DOM Ul Object
❮ Previous
Next ❯
Ul Object
The Ul object represents an HTML <ul> element.
Access a Ul Object
You can access a <ul> element by using getElementById():
Example
var x = document.getElementById("myUL");
Try it Yourself »
Create a Ul Object
You can create a <ul> element by using the document.createElement() method:
Example
var x = document.createElement("UL");
Try it Yourself »
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
❮ Previous
Next ❯