Open In App

HTML DOM Figure Object

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The DOM Figure Object is used to represent the HTML <figure> element. The figure element is accessed by getElementById()

Syntax:

document.getElementById("ID");

Where “id” is the ID assigned to the “figure” tag. 

Example 1: In this example, we will use DOM Figure Object.

HTML




<!DOCTYPE html>
<html>
   
<head>
    <title>DOM Figure Object </title>
    <style>
        body {
            text-align: center;
        }
        h1 {
            color: green;
        }
    </style>
</head>
   
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM figure Object</h2>
    <!-- assign id to figure tag -->
    <figure id="GFG">
        <img src=
             alt="GeeksforGeeks"
             width="304"
             height="228">
        <figcaption>Geeks logo</figcaption>
    </figure>
    <button onclick="Geeks()">
          Submit
      </button>
    <p id="sudo"></p>
   
    <script>
        function Geeks() {
           
            <!-- accessing the figure object -->
           let g = document.getElementById("GFG").id;
            document.getElementById("sudo").innerHTML = g;
        }
    </script>
</body>
   
</html>


Output: 

 

Example 2: Figure Object can be created by using the document.createElement Method. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title> DOM figure object </title>
    <style>
        body {
            text-align: center;
        }
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM figure Object</h2>
    <button onclick="Geeks()">
          Submit
      </button>
   
    <script>
        function Geeks() {
            let g = document.createElement("FIGURE");
            g.setAttribute("id", "GFG");
            document.body.appendChild(g);
            let f = document.createElement("IMG");
            f.setAttribute("src",
            f.setAttribute("width", "304");
            f.setAttribute("width", "228");
            f.setAttribute("alt", "GeeksforGeeks");
 
            document.getElementById("GFG").appendChild(f);
        }
    </script>
</body>
   
</html>


Output: 

 

Supported Browsers: The browser supported by DOM figure Object are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari


Last Updated : 15 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads