HTML DOM DD Object
- Previous Page <datalist>
- Next Page <del>
DD object
The DD object represents the HTML <dd> element.
Accessing the DD object
You can use getElementById() to access the <dd> element:
var x = document.getElementById("myDD");
Create DD Object
You can use the document.createElement() method to create a <dd> element:
var x = document.createElement("DD");
Standard Properties and Events
DD Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Reference Manual:HTML <dd> Tag
- Previous Page <datalist>
- Next Page <del>