DEV Community

Cover image for JavaScript: Understanding DOM
Stephanie-dev
Stephanie-dev

Posted on • Updated on

JavaScript: Understanding DOM

Are you curious about how websites come to life? JavaScript is a powerful language that brings web pages to life. Well, today we're going to explore the Document Object Model (DOM), a crucial concept in web development.

What is the Document Object Model (DOM)?

DOM stands for Document Object Model. It's a standard way for programming languages (like JavaScript) to access and modify websites.
The DOM is a programming interface for HTML and XML documents. It's a tree-like structure that represents the document's structure, allowing programs to dynamically access and manipulate the content, structure, and style of a document.

There are three types of DOM:

  • Core DOM (for all document types)
  • XML DOM (for XML documents)
  • HTML DOM (for HTML documents)

We'll be focusing on the HTML DOM.

The HTML DOM Tree: A Website's Building Blocks

Imagine a website as a big tree with many branches. Each branch represents an HTML element (like a button or an image), and the tree is called the HTML DOM. JavaScript uses this tree to access and modify the website's content, style, and behavior. The DOM tree has a single root node, which is the document itself. From there, it branches out into various nodes, each representing an element, attribute, or text.

Nodes and Node Types

In the DOM, each node has a specific type, which determines its behavior and properties. The most common node types are:

  • Element nodes (e.g., <div>,<p>,<img>)
  • Attribute nodes (e.g.,href, src, style)
  • Text nodes (e.g., the text content of an element)
  • Document nodes (the root node of the DOM tree)

Node Relationships

Nodes in the DOM tree have relationships with each other, which are crucial for navigating and manipulating the document. The most important relationships are:

  • Parent-child relationships (e.g., a <div> element is the parent of its child elements)
  • Sibling relationships (e.g., two<p> elements are siblings if they have the same parent)
  • Ancestor-descendant relationships (e.g., a<div> element is an ancestor of its child and grandchild elements)

An illustration:

An image of the DOM Tree

Now, what is HTML DOM?

As mentioned earlier, JavaScript is a powerful language that brings web pages to life, and at the heart of its functionality lies the HTML Document Object Model (DOM).

HTML DOM is a set of rules that defines how HTML elements (like buttons or images) are represented as objects. It's like a dictionary that explains how to access and modify website elements.

What Can HTML DOM Do?

With HTML DOM, JavaScript can:

  • Change the text or image on a website.
  • Change the website's colors and layout.
  • React to user interactions (like clicks or hover effects).
  • Add or remove website elements.
  • Create new events (like animations or pop-ups).

Put simply, HTML DOM is like an instruction manual for JavaScript to understand and manipulate websites.

Interacting with the DOM

JavaScript is the primary language for interacting with the DOM. It provides various methods and properties for accessing, creating, and manipulating nodes in the DOM tree. Some common examples include:

  • document.getElementById() to retrieve an element node by its ID/
  • document.createElement() to create a new element node.
  • node.appendChild() to add a child node to an element node.
  • node.style to access and modify an element's CSS styles.

Here are some examples:

1. document.getElementById()

HTML:

<div id="myDiv">Hello World!</div>
Enter fullscreen mode Exit fullscreen mode

JavaScript:

const myDiv = document.getElementById("myDiv");
console.log(myDiv); // Output: <div id="myDiv">Hello World!</div>
Enter fullscreen mode Exit fullscreen mode

2. document.createElement()

JavaScript:

const newParagraph = document.createElement("p");
newParagraph.textContent = "This is a new paragraph.";
console.log(newParagraph); // Output: <p>This is a new paragraph.</p>
Enter fullscreen mode Exit fullscreen mode

3. node.appendChild()

HTML:

<div id="myDiv">Hello World!</div>
Enter fullscreen mode Exit fullscreen mode

JavaScript:

const myDiv = document.getElementById("myDiv");
const newParagraph = document.createElement("p");
newParagraph.textContent = "This is a new paragraph.";
myDiv.appendChild(newParagraph);
Enter fullscreen mode Exit fullscreen mode

Result:

<div id="myDiv">Hello World!<p>This is a new paragraph.</p></div>
Enter fullscreen mode Exit fullscreen mode

4. node.style

HTML:

<div id="myDiv" style="background-color: red;">Hello World!</div>
Enter fullscreen mode Exit fullscreen mode

JavaScript:

const myDiv = document.getElementById("myDiv");
myDiv.style.backgroundColor = "blue";
Enter fullscreen mode Exit fullscreen mode

Result:

<div id="myDiv" style="background-color: blue;">Hello World!</div>
Enter fullscreen mode Exit fullscreen mode

Summary

HTML DOM is a powerful tool that helps JavaScript create dynamic and interactive websites. Understanding HTML DOM is crucial for web development, and it opens up endless possibilities for creative and engaging web experiences.

Please like and share your comments below 🤗

Learn, Code, Repeat!

Top comments (0)