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

Related Articles

How to append HTML code to a div using JavaScript ?

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

In this article, we will append HTML code to a div using Javascript. In order to do this, we will first select the div element by using the document.getElementById() method, then we will use the below-mentioned methods to append the HTML code to div.

There are two ways to append HTML code to a div through JavaScript

Using the innerHTML attribute: 

To append using the innerHTML attribute, first select the element (div) where you want to append the code. Then, add the code enclosed as strings using the += operator on innerHTML. 

Syntax:

element.innerHTML += "additional HTML code"
            // OR
element.innerHTML = element.innerHTML + "additional HTML code"        

Example: This example uses the above-explained approach to append the HTML code to a div using Javascript.

html




<!DOCTYPE html>
<html>
<head>
    <title>
          How to Append HTML Code to a Div using Javascript
    </title>
    <style>
        body {
            text-align: center;
             
            padding: 5%;
        }
        h1{
            color:green;
        }
    </style>
</head>
 
<body>
    <div id="add_to_me">
        <h1>GeeksforGeeks</h1>
        <p>
          This is the text which has already been typed into
          the div
        </p>
    </div>
 
    <button onclick="addCode()">Add Stuff</button>
    <script>
        function addCode() {
            document.getElementById("add_to_me").innerHTML +=
            "<h3>This is the text which has been inserted by JS</h3>";
        }
    </script>
</body>
</html>

Output:

 

Note: This method basically destroys all the content of the div and recreates it. So, if you have any listeners attached to the child nodes of that div, they will be lost.

Using the insertAdjacentHTML() method:

HTML code can be appended to a div using the insertAdjacentHTML() method. However, you need to select an element inside the div to add the code. This method takes two parameters:

  • The position (in the document) where you want to insert the code (‘afterbegin’, ‘beforebegin’, ‘afterend’, ‘beforeend’)
  • The HTML code you want to insert is enclosed in quotes

Syntax:

elementInsideDiv.insertAdjacentHTML('afterend', 'additional HTML code');

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
          How to Append HTML Code to a Div using Javascript?
    </title>
    <style>
        body {
            text-align: center;
            padding: 5%;
        }
    h1{
        color: green
        }
    </style>
</head>
 
<body>
    <div id="add_to_me">
        <h1>GeeksforGeeks</h1>
        <p id="add_after_me">
            This is the text which has already been typed
              into the div
          </p>
    </div>
 
    <button onclick="addCode()">Add Stuff</button>
    <script>
        function addCode() {
            document.getElementById("add_after_me").insertAdjacentHTML("afterend",
                "<h3>This is the text which has been inserted by JS</h3>");
        }
    </script>
</body>
</html>

Output:

 

Note: You should never insert the HTML code in this way if you are taking it as input from the user. It opens your website to cross-site scripting vulnerabilities.

JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by following this JavaScript Tutorial and JavaScript Examples.


My Personal Notes arrow_drop_up
Last Updated : 16 May, 2023
Like Article
Save Article
Similar Reads
Related Tutorials