HTML DOM Cite Object

Cite Object

The Cite object represents the HTML <cite> element.

Accessing the Cite Object

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

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

Try It Yourself

Create Cite Object

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

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

Try It Yourself

Standard Properties and Events

Cite Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Reference Manual:HTML <cite> Tag