Appending HTML to a div using innerHTML in JavaScript

This article guides how to append HTML code to a `div` element using the `innerHTML` property in JavaScript. Readers will learn how to work with the DOM to add new HTML content to a specific `div`.

In this article, you'll learn how to use the innerHTML property to append HTML code to a div element. This is a simple way to dynamically update or add HTML content to your webpage.

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 with innerHTML</title>
</head>
<body>

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

    <button onclick="appendContent()">Add HTML</button>

    <script>
        // Function to append HTML content to the div
        function appendContent() {
            // Get the div element by id 'contentDiv'
            var contentDiv = document.getElementById("contentDiv");

            // Append new HTML content to the div
            contentDiv.innerHTML += "<p>New HTML content added.</p>";
        }
    </script>

</body>
</html>

Detailed explanation:

  1. <!DOCTYPE html>: Declares the document as an HTML5 document.
  2. <div id="contentDiv">: Creates a div element to hold the HTML content.
  3. <button onclick="appendContent()">: A button that calls the appendContent function when clicked.
  4. function appendContent(): Defines a JavaScript function to append HTML to the div.
  5. var contentDiv = document.getElementById("contentDiv");: Gets the div element by id.
  6. contentDiv.innerHTML += "...";: Appends new HTML content to the div.

Tips:

  • Ensure that the HTML content being appended is secure and free from malicious code to avoid XSS attacks.
  • innerHTML can replace the entire content of an element, so be careful not to lose existing content when appending new HTML.


Related

Pass parameter to a setTimeout() method in JavaScript using a bind() method

A guide on how to pass a parameter to the `setTimeout()` method using the `bind()` method in JavaScript. This technique allows you to control the parameter passed to the delayed function call.
How to pass an array as a function parameter in JavaScript using the apply() method

A guide on using the `apply()` method in JavaScript to pass an array as a function parameter. This method allows you to convert an array into individual arguments when calling a function.
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.
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.
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 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.
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.
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 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.

main.add_cart_success