Open In App

HTML DOM Footer Object

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM footer object is used to represent the HTML <footer> element. The footer element can be accessed using the getElementById() method.

Syntax:  

document.getElementById("id"); 

Where ‘id’ is the ID assigned to the footer tag.

Example 1: In the below program the footer element is accessed and the color of the text inside the footer element is changed.  

HTML




<!DOCTYPE html>
<html>
   
<body>
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM footer Object</h2>
    <button onclick="Geeks()">Click Here</button>
    <br><br>
    <footer id="s">This is a Footer content</footer>
    <script>
        function Geeks() {
            let txt = document.getElementById("s");
            txt.style.color = "green";
        }
    </script>
</body>
</html>


Output: 

 

Example 2: Footer Object can be created by using the document.createElement method.  

HTML




<!DOCTYPE html>
<html>
   
<body>
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM footer Object</h2>
    <button onclick="Geeks()">Click Here!</button><br><br>
    <p id="foot"></p>
    <script>
        function Geeks() {
            let x = document.createElement("FOOTER");
            document.body.appendChild(x);
            let y = document.createElement("P");
            let t = document.createTextNode(
                      "This is a p element in a footer element.");
            y.appendChild(t);
 
            document.getElementById("foot").appendChild(y);
        }
    </script>
</body>
</html>


Output: 

 

Supported Browsers:

  • Google Chrome
  • Mozilla Firefox
  • Internet Explorer (after IE 8.0)
  • Safari
  • Opera


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