HTML DOM DList Object
DList Object
The DList object represents an HTML <dl> element.
Access a DList Object
You can access a <dl> element by using getElementById():
var x = document.getElementById("myDL");
Try it
Create a DList Object
You can create a <dl> element by using the document.createElement() method:
var x = document.createElement("DL");
Try it
Standard Properties and Events
The DList object supports the standard properties and events.
Related Pages
HTML tutorial: HTML Lists
HTML reference: HTML <dl> tag