Home [Javascript] The DOM (Document Object Model) Manipulation
Post
Cancel

[Javascript] The DOM (Document Object Model) Manipulation

Intro

Introduction

The Document Object Model (DOM) is a programming interface for web documents. It represents the structure of a web page as a tree of objects, allowing programmers to manipulate the content, structure, and style of a web page using JavaScript. DOM manipulation is a powerful tool in web development, allowing developers to dynamically update and change the content of a web page without having to reload the entire page.

Basic DOM Manipulation

One of the most common tasks in DOM manipulation is selecting elements from the DOM. This can be done using methods such as getElementById(), getElementsByClassName(), getElementsByTagName(), or querySelector(). Once an element is selected, its properties and attributes can be accessed and modified using JavaScript. For example, to change the text of an element with the id “example” we can use:

1
document.getElementById("example").innerText = "Hello, World!";

Adding and Removing Elements

In addition to changing the content of existing elements, developers can also create new elements and add them to the DOM. This can be done using methods like createElement(), appendChild(), or insertBefore(). For example, to add a new paragraph element to the end of the body we can use:

1
2
3
const newParagraph = document.createElement("p");
newParagraph.innerText = "This is a new paragraph.";
document.body.appendChild(newParagraph);

Conversely, elements can be removed from the DOM using methods like removeChild(). For example, to remove the paragraph element we just added we can use:

1
document.body.removeChild(newParagraph);

Event Handling

Another important aspect of DOM manipulation is event handling. Events are actions that occur on a web page, such as clicking a button or submitting a form. JavaScript can be used to listen for these events and trigger specific actions in response. This can be done using methods like addEventListener(). For example, to display an alert message when a button is clicked we can use:

1
2
3
4
const button = document.getElementById("myButton");
button.addEventListener("click", function() {
  alert("Button clicked!");
});

Conclusion

DOM manipulation is a crucial skill for web developers, allowing them to create dynamic and interactive web pages. By understanding how to select elements, change their properties, add and remove elements, and handle events, developers can create responsive and engaging web applications. JavaScript is the preferred language for DOM manipulation, and the techniques described here are applicable to all modern browsers. Mastering DOM manipulation can lead to more efficient and user-friendly web development.

This post is licensed under CC BY 4.0 by the author.
Contents