HTML DOM Figcaption Object
- Previous Page <fieldset>
- Next Page <figure>
Figcaption object
The Figcaption object represents the HTML <figcaption> element.
Access the Figcaption object
You can use getElementById() to access the <figcaption> element:
var x = document.getElementById("myFigCap");
Create a Figcaption object
You can use the document.createElement() method to create a <figcaption> element:
var x = document.createElement("FIGCAPTION");
Standard Properties and Events
Figcaption Object Supports StandardsPropertiesAndEvents.
Related Pages
HTML Reference Manual:HTML <figcaption> Tag
- Previous Page <fieldset>
- Next Page <figure>