How to append HTML code to a div using appendChild in JavaScript

A guide on using `appendChild` to append HTML code to a `div` in JavaScript. This approach ensures DOM integrity and allows you to dynamically add HTML elements.

In this article, we will learn how to use the appendChild method in JavaScript to append new HTML content to a div. This method uses DOM Nodes, making it a more precise way to interact with web pages compared to using innerHTML.

JavaScript Code

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Append HTML using appendChild</title>
</head>
<body>

    <div id="myDiv">
        <p>Initial content inside the div.</p>
    </div>

    <button onclick="appendHTML()">Add More HTML</button>

    <script>
        // Function to append HTML content to the div
        function appendHTML() {
            // Get the div element by its id 'myDiv'
            const myDiv = document.getElementById("myDiv");

            // Create a new p element
            const newParagraph = document.createElement("p");
            // Create a text node for the p element
            const text = document.createTextNode("New paragraph added using appendChild.");

            // Append the text node to the p element
            newParagraph.appendChild(text);

            // Append the p element to the div
            myDiv.appendChild(newParagraph);
        }
    </script>

</body>
</html>

Detailed explanation:

  1. <!DOCTYPE html>: Declares the document as an HTML document.
  2. <div id="myDiv">: Creates a div element with initial content.
  3. <button onclick="appendHTML()">: Button to call the appendHTML function when clicked.
  4. function appendHTML(): Defines a JavaScript function to append HTML to the div.
  5. const myDiv = document.getElementById("myDiv");: Selects the div element by its id.
  6. const newParagraph = document.createElement("p");: Creates a new p element.
  7. const text = document.createTextNode("...");: Creates text content for the p element.
  8. newParagraph.appendChild(text);: Appends the text node to the p element.
  9. myDiv.appendChild(newParagraph);: Appends the p element to the div.

Tips:

  • appendChild helps maintain the existing DOM structure without replacing content like innerHTML.
  • You can combine createElement and appendChild to create more complex HTML structures.


Related

Convert accented Unicode characters to non-accented in JavaScript

A guide on how to convert accented Unicode characters in the Vietnamese alphabet to non-accented letters using JavaScript's normalize method. This JavaScript code efficiently handles Vietnamese text processing.
How to convert 3-digit color code to 6-digit color code using JavaScript

A guide on converting 3-digit color codes (#RGB) to 6-digit color codes (#RRGGBB) using JavaScript. This ensures consistent color representation in web pages.
JavaScript Program to Pass Parameter to a setTimeout() Method Using an Anonymous Function

A guide on how to pass parameters to the `setTimeout()` method using an anonymous function in JavaScript. This approach helps developers delay code execution while passing specific parameters.
How to pass an array as a function parameter in JavaScript using the spread syntax

A guide on how to use the spread syntax (`...`) to pass an array as a parameter to a function in JavaScript. The article will show how to pass array elements as individual function arguments.
How to Fetch JSON Data from an API URL Using JavaScript

Learn how to fetch JSON data from an API URL using JavaScript. Includes detailed code and explanations for each line to help you understand how to use Fetch API for making GET requests and handling JSON data.
How to append HTML code to a div using insertAdjacentHTML in JavaScript

A guide on how to append HTML code to a `div` using the `insertAdjacentHTML` method in JavaScript. This method allows you to add content without replacing the existing content.
How to POST Data from an HTML Form to an API URL Using JavaScript

Learn how to send data from an HTML form to an API URL using JavaScript with the POST method. Includes detailed code and explanation on how to use Fetch API to handle form data and send POST requests.
Send JSON data via POST to an API using JavaScript

A guide on how to send JSON data to an API using the POST method in JavaScript. The code uses the fetch method to perform the POST request and includes detailed explanations of each step.
How to pass parameters to a setTimeout() method in JavaScript using arrow function

A guide on how to use `setTimeout()` with an arrow function to pass parameters to a function in JavaScript. This method is useful when you need to delay function execution while passing arguments to it.
How to convert Color Names to Hexcode using JavaScript

A guide on how to convert color names (e.g., "red", "blue") into Hex color codes (#RRGGBB) using JavaScript. This method helps manipulate colors efficiently in web development.

main.add_cart_success