DOM (Document Object Model)

DOM (Document Object Model)

DOCUMENT OBJECT MODEL:

Structured representation of HTML documents. Allows javascript to access HTML elements and Styles TO MANIPULATE them.

What does the word MANIPULATE mean? Change text, HTML attributes, and even CSS styles

Sitemap Whiteboard in Green Purple Basic Style.png

Here's the code for us to look at:

DOM.png

Let's take a look at the HTML code and compare them to the corresponding DOM elements.

Sitemap Whiteboard in Green Purple Basic Style (2).png

For example, The DOM specifies that the querySelectorAll method in this code snippet must return a list of all the

elements in the document.

raycast-untitled (3).png

It's worth noting that DOM is not a part of the Javascript language, but is instead a Web API used to build websites.

Frame-70-1.png

  • This allows us to use JavaScript to interact with the browsers.
  • We can write JavaScript to create, modify and delete HTML elements; set styles, classes, and attributes; and listen and respond to events.
  • The DOM API is a very complex and extensive API that contains lots of methods and properties to interact with the DOM tree. Examples: .querySelector() / .addEventListener() / .createElement() / .innerHTML / .textContent / .children / etc

Let's take simple examples to help better understand how this works. Play with this code and see what's written on the screen.

That's from my end, hope you like this blog. Follow me on Twitter for updates on my progress and to chat with me about anything and everything. Twitter