HTML DOM DD Object

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");

Try It Yourself

Create DD Object

You can use the document.createElement() method to create a <dd> element:

var x = document.createElement("DD");

Try It Yourself

Standard Properties and Events

DD Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Reference Manual:HTML <dd> Tag