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

Related Articles

HTML | DOM BR Object

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

The DOM BR Object is used to represent the HTML <br> element. The br element is accessed by getElementById().
Syntax: 
 

document.getElementById(id)

Where “id” is the ID assigned to the br tag.
Properties 

  • clear : It is used to Sets or returns the flow of text around floating objects

Examples-1: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML | DOM BR Object
</title>
    <style>
        body {
            text-align: center;
        }
         
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM br Object</h2>
 
    <!-- br tag is used here -->
     
 
 
<p>GeeksforGeeks:
        <br id="GFG"> Computer science portal</p>
 
 
 
    <button onclick="myGeeks()">Subnit</button>
    <script>
        function myGeeks() {
            var w = document.getElementById("GFG");
            w.style.display = "none";
        }
    </script>
</body>
 
</html>


Output: 
Before Clicking on Button : 
 

After Clicking On Button: 
 

Example-2: Br Object can be created by using the document.createElement Method. 
 

html




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1>GeeksForGeeks</h1>
        <h2>DOM BR Object</h2>
        <button onclick="Geeks()" style="margin-bottom:20px;">
          Submit
        </button>
 
        <div id="GFG">
            <span>Hello, </span>
            <span>Geeks.</span>
            <span>For</span>
            <span>Geeks</span>
        </div>
 
        <script>
            function Geeks() {
                <!-- Get the div element with id="GFG" -->
                var g = document.getElementById("GFG");
 
                <!-- Get all span elements inside of div. -->
                var f = g.getElementsByTagName("SPAN");
 
                <!-- Create a loop which will insert a br
                     element before each span element in div,
                     starting from the second span element. -->
                        
                var j;
                for (j = 1; j < f.length; j++) {
                    var w = document.createElement("BR");
                    g.insertBefore(w, f[j]);
                }
            }
        </script>
  </center>
 
</body>
 
</html>


Output:
Before Clicking on Button: 
 

After Clicking on Button: 
 

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

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

 


My Personal Notes arrow_drop_up
Last Updated : 30 Mar, 2022
Like Article
Save Article
Similar Reads
Related Tutorials