HTML DOM DList Object
DList object
The DList object represents the HTML <dl> element.
Access the DList object
You can use getElementById() to access the <dl> element:
var x = document.getElementById("myDL");
Create a DList object
You can use the document.createElement() method to create a <dl> element:
var x = document.createElement("DL");
Standard Properties and Events
The DList Object supports standardsPropertiesAndEvents.