Open In App

HTML DOM Article Object

Last Updated : 14 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax:  

document.getElementById("id"); 

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

Example 1: In the below program the article object is accessed at click of a button and the color of the text inside the element is changed. 

HTML




<!DOCTYPE html>
<html>
   
<body>
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM article Object</h2>
    <button onclick="Geeks()">Click Here</button>
    <br><br>
    <article id="s">A computer science portal for geeks.</article>
    <script>
        function Geeks() {
            let txt = document.getElementById("s");
            txt.style.color = "green";
        }
    </script>
</body>
</html>


Output: 

 

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

HTML




<!DOCTYPE html>
<html>
 
<body>
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM article Object</h2>
    <button onclick="Geeks()">Click Here!</button><br><br>
    <div><span id="p"></span></div>
    <script>
        function Geeks() {
            let txt = document.createElement("ARTICLE");
            let t = document.createTextNode(
                          "A computer science portal for geeks.");
            txt.appendChild(t);
            document.getElementById("p").appendChild(txt);
        }
    </script>
</body>
</html>


Output: 

 

Supported Browsers: The browser supported by HTML DOM Article object are listed below:

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads