Open In App
Related Articles

HTML DOM Code Object

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Syntax:  

document.getElementById("id"); 

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

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

HTML




<!DOCTYPE html>
<html>
 
<body>
    <h1 style="color:green; font-size:38px;">
        GeeksForGeeks
    </h1>
    <h2>DOM code Object</h2>
 
    <!-- Assign id to CODE tag-->
    <code id="GFG">
        GeeksForGeeks: A computer science portal for geeks.
        </code>
    <br>
    <br>
    <button onclick="myGeeks()">Submit</button>
    <script>
        function myGeeks() {
            let g = document.getElementById("GFG");
 
            <!--Change the color of code element.-->
            g.style.color = "coral";
        }
    </script>
</body>
</html>


Output:

 

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

HTML




<!DOCTYPE html>
<html>
   
<body>
    <h1 style="color:green; font-size:38px;">
        GeeksForGeeks
    </h1>
    <h2>DOM code Object</h2>
    <br>
    <button onclick="myGeeks()">Submit</button>
    <script>
        <!--Creating code element-->
        function myGeeks() {
            let g = document.createElement("CODE");
            let f =
                document.createTextNode("GeeksForGeeks:"
                    + "A computer science portal for geeks.");
            g.appendChild(f);
            document.body.appendChild(g);
        }
    </script>
</body>
</html>


Output:

 

Supported Browsers: The browser supported by DOM Code 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 : 14 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials