HTML DOM DT Object

DT object

The DT object represents the HTML <dt> element.

Accessing the DT object

You can use getElementById() to access the <dt> element:

var x = document.getElementById("myDT");

Try It Yourself

Create DT Object

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

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

Try It Yourself

Standard Properties and Events

DT Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Reference Manual:HTML <dt> Tag