HTML DOM Ol Object
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1422003450156-2'); });
HTML DOM Ol Object
❮ Previous
Next ❯
Ol Object
The Ol object represents an HTML <ol> element.
Access an Ol Object
You can access an <ol> element by using getElementById():
Example
var x = document.getElementById("myOl");Try it Yourself »
Create an Ol Object
You can create an <ol> element by using the document.createElement() method:
Example
var x = document.createElement("OL");
Try it Yourself »
Ol Object Properties
| Property | Description |
|---|---|
| compact | Not supported in HTML5. Use style.lineHeight instead. Sets or returns whether the list should render smaller than normal, or not |
| reversed | Sets or returns whether the list order should be descending or not |
| start | Sets or returns the value of the start attribute of an ordered list |
| type | Sets or returns the value of the type attribute of an ordered list |
Standard Properties and Events
The Ol object also supports the standard properties and events.
Related Pages
HTML reference: HTML <ol> tag
❮ Previous
Next ❯