DEV Community

Cover image for UNVEILING THE WEB MAGIC OF DOM (Document Object Model)
PrincessAisha
PrincessAisha

Posted on

UNVEILING THE WEB MAGIC OF DOM (Document Object Model)

Imagine you're in charge of organizing a library. Your task is to categorize and arrange all the books, ensuring that they are easily accessible to readers. Each book has its unique title, author, and content, and you need to create a system that allows visitors to navigate through the library efficiently.

The library can be likened to a web page, and the Document Object Model (DOM) acts as the organizational structure that you implement to manage and present the library's content.
Library is the Web Page: Just as a web page contains various elements like text, images, forms, etc., the library houses books, shelves, tables, and other resources.
Books are the Elements: Each book in the library represents an element in the DOM. Each book has attributes (title, author, genre) similar to how HTML elements have attributes (id, class, etc.).

Catalog System serves as DOM Methods: Your cataloging system in the library, such as sorting books alphabetically or categorizing them by genre, corresponds to the methods provided by the DOM to manipulate elements.

By likening the DOM to organizing a library, it becomes easier to grasp its role in managing the structure, content, and interactivity of web pages. Just as a well-organized library enhances the visitor's experience, a well-structured DOM enhances the user experience on the web by enabling dynamic and interactive content.

Now that you have a glimpse of what DOM looks like, lets

What is DOM?

DOM AS AN INTERFACE

The Document Object Model (DOM) is an interface between all JavaScript code and the browser, specifically between HTML documents rendered in and by the browser. Through DOM, we can make JavaScript interact with the browser by creating, modifying, and deleting elements, setting styles, classes, and attributes, and listening and responding to events. This is because a DOM tree, a tree-like structure comprising nodes, is generated from an HTML document.

So basically, DOM is an API that represents and interacts with HTML and XML.
The DOM is a W3C(World Wide Web Consortium) standard and it defines a standard for accessing documents.
The W3C Dom standard is divided into three different parts:

  • Core DOM: standard model for all document types
  • XML DOM: standard model for XML documents
  • HTML DOM: standard model for HTML documents

How Does the DOM Work?

If you were listening to music on an app and you wanted to pause or skip a song, you'd have to do that through the app.
This process is similar to how the Document Object Model or DOM works. Here, the music app represents the DOM because it serves as a medium to make changes to the music.

When a web page loads in a browser, the DOM creates a tree-like representation of that page.
The document object is the main entry point to the DOM. It houses other objects, which in turn contain their own objects, forming a hierarchy.
Nodes in the DOM tree correspond to elements in the HTML document (e.g., paragraphs, headings, images).
You can access and manipulate these nodes using JavaScript or other scripting languages.

The DOM represents a document with a logical tree. Each branch of the tree ends in a node, and each node contains objects. DOM methods allow programmatic access to the tree. With them, you can change the document's structure, style, or content.

DOM is basically the representation of HTML document but in a tree-like structure composed of objects.
JavaScript interprets DOM easily, using it as a bridge to access and manipulate the elements. DOM JavaScript allow access to each of the objects (h1, p, etc.) by using different functions.

Here’s how it generally works:

  • Parsing HTML: When a web page is loaded, the browser parses the HTML document and constructs a DOM tree based on the HTML structure. This DOM tree represents the hierarchical structure of the document, with each HTML element represented as a node in the tree.
  • DOM API Access: JavaScript code running in the browser can access and manipulate this DOM tree using the DOM API. The DOM API provides a set of methods and properties that allow developers to interact with the DOM elements.
  • Element Selection: Developers can select specific elements in the DOM using methods like getElementById, getElementsByClassName, querySelector, querySelectorAll, etc. These methods return references to DOM elements that can be manipulated further.
  • Manipulation: Once a DOM element is selected, developers can modify its attributes, content, styles, and structure using the DOM API. For example, you can change the text content of an element, add or remove classes, update styles, append or remove child elements, etc.
  • Event Handling: The DOM API also allows developers to handle user interactions and events such as clicks, keypresses, form submissions, etc. Event listeners can be attached to DOM elements to trigger specific actions or functions when events occur. Rendering Updates: As developers make changes to the DOM structure or content using the DOM API, the browser automatically updates the rendered web page to reflect these changes. This dynamic updating process ensures that the web page remains interactive and responsive to user actions.

STRUCTURE OF DOM

DOM TREE

DOM can be thought of as a Tree or Forest (more than one tree). The term structure model is sometimes used to describe the tree-like representation of a document.

Each branch of the tree ends in a node, and each node contains objects Event listeners can be added to nodes and triggered on an occurrence of a given event. One important property of DOM structure models is structural isomorphism: if any two DOM implementations are used to create a representation of the same document, they will create the same structure model, with precisely the same objects and relationships.

  • The DOM tree starts with the document node, representing the entire HTML document.

Other nodes include:

  • Element nodes: Represents HTML elements
  • Text nodes: Contains the actual text within an element
  • Attribute nodes: Represents attributes of an element
  • Comment nodes: It holds comment within the HTML Nodes are organized in hierarchical structure, reflecting the parent-child relationships between elements.

PROPERTIES OF DOM

  • The innerHTML property: You use this property to access the text content of an element.

  • The addEventListener() property: This property attaches an event listener to your element.

  • The replaceChild() property: This property replaces one child element with another new or existing child element.

  • The childNodes: The first child of the

    element

  • The parentNodes: The parent of the element

  • The nodeValue: The value of the node

CONCLUSION:

The Document Object Model is a powerful tool that forms the foundation of modern web development. By providing a structured representation of web documents and a rich set of APIs for manipulation, the DOM empowers developers to create engaging and dynamic web experiences. Understanding the inner workings, structure, and properties of the DOM is essential for any web developer looking to build modern, interactive web applications. So, embrace the DOM, and unlock the endless possibilities it offers in the world of web development.

Top comments (0)