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");
Create Cite Object
You can use the document.createElement() method to create a <cite> element:
var x = document.createElement("CITE");
Standard Properties and Events
Cite Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Reference Manual:HTML <cite> Tag