Open In App

HTML DOM Blockquote Object

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

Syntax 



document.getElementById("id");

Where “id” is the ID assigned to the blockquote tag. 

Property Value



Example 1: In this article, we will use DOM Blockquote Object




<!DOCTYPE html>
<html>
   
<head>
    <title>DOM blockquote object</title>
    <style>
        body {
            text-align: center;
        }
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2> DOM Object</h2>
    <blockquote ID="GFG" cite="www.geeksforgeeks.org">
        GeeksforGeeks: A computer science portal for geeks
    </blockquote>
    <button onclick="myGeeks()">Submit</button>
    <p id="sudo"></p>
   
    <script>
        function myGeeks() {
            let w = document.getElementById("GFG").cite;
            document.getElementById("sudo").innerHTML = w;
        }
    </script>
</body>
   
</html>

Output: 

 

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




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM blockquote object</title>
    <style>
        body {
            text-align: center;
        }
 
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2> DOM Object</h2>
    <button onclick="myGeeks()">Submit</button>
    <p id="sudo"></p>
   
    <script>
        function myGeeks() {
            let g = document.createElement("BLOCKQUOTE");
            let f = document.createTextNode("GeeksforGeeks:" +
                "A computer science portal for geeks.");
            g.setAttribute("cite", "www.geeksforgeeks.org");
            g.appendChild(f);
            document.body.appendChild(g);
        }
    </script>
</body>
 
</html>

Output: 

 

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


Article Tags :