Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Cite Object

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The DOM Cite Object is used to represent HTML <Cite> element. The Cite element is accessed by getElementById().
Syntax 
 

document.getElementById("id");

Where “id” is the ID assigned to the cite tag.
Example-1: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM cite Object</title>
    <style>
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
              /wp-content/uploads/geeksforgeeks-25.png"
         alt="gfg">
 
    <!-- cite id-->
     
<p><cite id="GFG">GeeksforGeeks Image</cite></p>
 
 
    <button onclick="Geeks()">Submit</button>
 
    <script>
        function Geeks() {
            var w = document.getElementById("GFG");
            w.style.color = "coral";
            w.style.fontWeight = "bold";
        }
    </script>
</body>
 
</html>            

Output:
Before Clicking on Button: 
 

After Clicking On Button: 
 

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

html




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM cite Object</title>
    <style>
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h2>DOM Cite Object</h2>
   
    <button onclick="Geeks()">
      Submit
    </button>
   
              /wp-content/uploads/geeksforgeeks-25.png"
         alt="gfg">
   
    <script>
        function Geeks() {
            var cite = document.createElement("CITE");
           
            var text =
            document.createTextNode("GeeksforGeeks Image");
           
            cite.appendChild(text);
            document.body.appendChild(cite);
        }
    </script>
</body>
 
</html>                   

Output 
Before Clicking on Button: 
 

After Clicking on Button: 
 

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

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

 


My Personal Notes arrow_drop_up
Last Updated : 01 Jun, 2021
Like Article
Save Article
Similar Reads
Related Tutorials