The Figcaption Object in HTML DOM is used to represent the HTML <figcaption> element. The figcaption element is accessed by getElementById().
Syntax:
document.getElementById("ID");
Where ID represent the element id.
Example 1:
<!DOCTYPE html>
< html >
< head >
< title >
HTML DOM figcaption Object
</ title >
< style >
body {
text-align:center;
}
h1 {
color:green;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >DOM Figcaption Object</ h2 >
< figure >
< img src =
alt = "gfglogo" style = "width:50%" >
< figcaption id = "GFG" >
GeeksforGeeks Logo
</ figcaption >
</ figure >
< button onclick = "Geeks()" >
Submit
</ button >
< script >
function Geeks() {
var gfg = document.getElementById("GFG");
gfg.style.color = "green";
gfg.style.fontSize = "20px";
}
</ script >
</ body >
</ html >
|
Output:
Before Click on the button:

After Click on the Button:

Example 2: Figcaption Object can be created by using the document.createElement Method.
<!DOCTYPE html>
< html >
< head >
< title >
HTML DOM figcaption Object
</ title >
< style >
body {
text-align:center;
}
h1 {
color:green;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 >DOM Figcaption Object</ h2 >
< figure >
< img src =
alt = "gfglogo" style = "width:50%" >
</ figure >
< button onclick = "Geeks()" >
Submit
</ button >
< script >
function Geeks() {
var x = document.createElement("FIGCAPTION");
var y = document.createTextNode("GeeksForGeeks Logo")
x.appendChild(y);
x.style.color = "green";
document.body.appendChild(x);
}
</ script >
</ body >
</ html >
|
Before Click on the Button:

After Click on the Button:

Supported Browsers: The browser supported by DOM Figcaption Object are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Oct, 2019
Like Article
Save Article