The Document Object Model (DOM) API
Table of Contents
What is the DOM?
The DOM is the Document Object Model. It is representation of the HTML structure of your website in a JavaScript object format.
For example, consider this HTML:
The DOM would take the elements of this HTML structure and turn them into objects! (This is not actually happening in your code. This is just to demonstrate the idea.)
The browser automatically generates this document object model for us! As web developers, we can use this DOM to do so much!
The Chrome Developer Tools
Open with f12 or by right-clicking and selecting inspect.
The Chrome Developer Tools allow us to interact with the source code of the page.
Use the Elements tab to view and manually manipulate the DOM
Use the Console tab to view
console.log
messages printed from the JS and to dynamically manipulate the DOM
The document
object
document
objectThe document
object is the DOM packaged in an object. The properties of the object allow us to access various elements of the DOM. Each element is a node in the document tree and each node has a .children
array.
Open the Console tab for this page and enter these expressions to see the objects returned:
The document
object also has methods that allow us to perform CRUD operations on the DOM:
Create new elements (create new "nodes" in the tree)
Read (find or "query for") existing elements
Update existing elements
Delete existing elements
Selecting Elements in the DOM (Read)
There are many ways to find an Element in the DOM, but querySelector
is the most flexible. It uses CSS selector syntax
It is important to note that querySelectorAll
returns a NodeList
which is NOT an array. You can use bracket notation but you can't use normal Array methods.
More Reading: w3Schools
Modifying Elements in the DOM (Update / Delete)
Once an Element is grabbed from the DOM, we can modify it, and even delete it!
More Reading: w3Schools
Creating Elements (Create)
Using the DOM API to dynamically create elements is one of the most powerful ways we can use it!
The pattern:
Create:
const newEl = document.createElement('div')
Modify: add an id, class, and text, whatever
Add:
parentEl.append(newEl)
You can also insert HTML directly using .innerHTML
but you should be very careful about doing this. Only ever do this if the content you are adding is hard-coded (not user-generated).
Linking JS files to HTML
Playing around with the document
object in the Console shows us the power of the DOM API.
If we want to utilize this functionality in our own websites, we need to link a .js
file to our HTML.
The most straightforward way to do this is to put a script
tag at the bottom of your HTML document, typically at the end of the body
, after the Elements of the document have been added to the page.
In that index.js
file, place a console.log
statement and view it in the Console tab of the Chrome Developer Tools each time you reload the webpage.
Try the following code:
Q: Why does the script
tag need to go at the end of the body?
This lets us do some really cool stuff, like dynamically creating elements from an array of data!
The code above, creates the following li
structure for every movie
in the movies
array:
Variables are Added to the Global Namespace
When loading multiple .js
files with script
tags, variables declared are added to the global namespace. This just means that they are available in all subsequent .js
files.
Back in the day, this was a useful feature as it let us keep our files separate but still be able to interact with each other since exporting and importing values wasn't invented yet.
To avoid adding variables to the global namespace, there are a couple of things we can do.
Option 1 — Use an IIFE (the old way)
One option is to always wrap the entire file in a top-level Immediately Invoked Function Expression (IIFE). An IIFE is an anonymous function that is immediately invoked. Since it is anonymous, there is no function name added to the global namespace. It is immediately invoked allowing the code inside to be executed.
But then we lose the ability to share variables across files. If we want to share values across files, we need to be able to export and import values.
Option 2 — Use Modules (the modern way)
To enable exporting and importing, we can turn our file into a module by adding the type="module"
attribute to the script
tag:
This enables ES6 importing and exporting syntax:
Above, we use the export default
syntax to export the movies
variable from movies.js
. Below, we import that value using the import...from
syntax
If we try this, we will end up with an error in our Console:
This is because of an unfortunate fact: browsers simply do not allow modules to be used over the file:// protocol. In order to use modules, we need to serve the modules via the http://
protocol.
Doing so means we need to turn our computer into a server!
But have no fear, this is actually quite easy. Just download the Live Server VS Code extension. A "Go Live" button will appear in the bottom right hand corner of your IDE. Just open the file you want to serve and click "Go Live" and voila — the file will be served via the http://
protocol instead of file://
!
Last updated