HTML DOM Blockquote Object

Blockquote Object

The Blockquote object represents the HTML <blockquote> element.

Access Blockquote Object

You can access the <blockquote> element by using getElementById():

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

Try It Yourself

Create Blockquote Object

You can create a <blockquote> element by using the document.createElement() method:

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

Try It Yourself

Blockquote Object Properties

Properties Description
cite Sets or returns the value of the referenced cite attribute.

Standard Properties and Events

Blockquote Object Supports StandardsPropertiesAndEvents.

Related Pages

HTML Reference Manual:HTML <blockquote> Tag

JavaScript Reference Manual:HTML DOM Quote Object