Open In App
Related Articles

HTML DOM Article Object

Improve Article
Improve
Save Article
Save
Like Article
Like

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

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 : 14 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials