HTML DOM Address Object

Address object

The Address object represents the HTML <address> element.

Access the Address object

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

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

Try It Yourself

Create an Address object

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

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

Try It Yourself

Standard Properties and Events

The Address Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Reference Manual:HTML <address> Tag