JS & the DOM Flashcards
Why do we log things to the console?
So you can see what the data looks like; so you can see what’s going on
What is a “model”?
Relation to DOM (document object model)
-> The DOM is a representation/model/replica of the HTML document, it is not the actual HTML document;
Which “document” is being referred to in the phrase Document Object Model?
The html document
What is the word “object” referring to in the phrase Document Object Model?
The DOM represents all the information in HTML document (elements, text, attributes, etc) as JavaScript objects
What is a DOM Tree?
It is a model of the HTML document created by the browser and stored in memory. The DOM tree is a tree data structure of nodes
Give two examples of document methods that retrieve a single element from the DOM.
- document.querySelector( )
2. document.getElementById( )
Give one example of a document method that retrieves multiple elements from the DOM at once.
document.querySelectorAll()
Why might you want to assign the return value of a DOM query to a variable?
Querying for an element using document.querySelector() method takes time/processing resources because you are traversing the DOM, looking for a node
If you have the node saved in a variable and want to do something to it, you don’t need to query the DOM for it again
What console method allows you to inspect the properties of a DOM element object (and JavaScript objects in general)?
console.dir( )
Why would a tag need to be placed at the bottom of the HTML content instead of at the top?
the DOM has to fully load before you can access / manipulate it with JavaScript
What does document.querySelector() take as its argument and what does it return?
It takes a CSS selector (as a string) as an argument and returns the first DOM node that matches the selector (or null if no matching node found)
What does document.querySelectorAll() take as its argument and what does it return?
It takes a CSS selector (as a string) as argument and returns a static nodelist of nodes that match the selector
What is the purpose of events and event handling?
They let your webpage respond/react to user actions - with events you can listen for stuff and then do stuff in response to it
Are all possible parameters required to use a JavaScript method or function?
No. Just because a function is given parameter doesn’t mean it has to do anything with it.
What method of element objects lets you set up a function to be called when a specific type of event occurs?
element.addEventListener()
What is a callback function?
A function passed into another function as an argument. The outer function calls the callback function later when it needs it.
What object is passed into an event listener callback when the event fires?
The event object
What is the event.target?
The element that received the event; the element that was interacted with.
What is the className property of element objects?
It is the class attribute of that html element; access or update the class attribute using this property
How do you update the CSS class attribute of an element using JavaScript?
element. className() method or
element. classList.add( ) / element.classList.remove()
What is the textContent property of element objects?
The text content of the node and its descendents
How do you update the text within an element using JavaScript?
element.textContent = newTextContent
Is the event parameter of an event listener callback always useful?
No. Just because a function takes a parameter doesn’t mean it has to do anything to it.
Why is storing information about a program in variables better than only storing it in the DOM?
Don’t want to store information on DOM because it is unreliable; the DOM should not be your “source of truth’, the javascript code should be
What event is fired when a user places their cursor in a form control?
focus
What event is fired when a user’s cursor leaves a form control?
blur
What event is fired as a user changes the value of a form control?
input
What event is fired when a user clicks the “submit” button within a ?
submit
What does the event.preventDefault() method do?
Prevents the browser’s default response to the event
What does submitting a form without event.preventDefault() do?
Causes page to reload with form values in url query string aka submit to server
What property of a form element object contains all of the form’s controls.
elements
What property of form a control object gets and sets its value?
value
Does the document.createElement() method insert a new element into the page?
No, before it appears on page must be appended to existing object on DOM
How do you add an element as a child to another element?
element.appendChild()
or
element.append()
What do you pass as the arguments to the element.setAttribute() method?
- attributeName
2. attributeValue
What steps do you need to take in order to insert a new element into the page?
- Create element
- set attributes and text content
- Attach it to the DOM by appending it as child of an existing node
What is the textContent property of an element object for?
Used to set or access the text content of an element
Name two ways to set the class attribute of a DOM element.
- element.classList.add()
2. element.className()
What are two advantages of defining a function to create something (like the work of creating a DOM tree)?
- Functions are reusable
2. functions have name, so they make your code easier to read
What is the event.target?
It is the element that an event originated from; the point of interaction
Why is it possible to listen for events on one element that actually happen its descendent elements?
Because of event flow, which causes events to ‘bubble up’ the DOM
What DOM element property tells you what type of element it is?
tagName
What does the element.closest() method take as its argument and what does it return?
Argument: css selector (as a string)
Return value: first (ie. closest) ancestor element that matches selector;
How can you remove an element from the DOM?
element.remove()
If you wanted to insert new clickable DOM elements into the page using JavaScript, how could you avoid adding an event listener to every new element individually?
Add the event listener to the parent element (aka use event delegation)
What is the event.target?
the element the user interacted with
What is the affect of setting an element to display: none?
It hides the element (removes element from the element flow);
What does the element.matches() method take as an argument and what does it return?
Argument = a selector string
Return value = a boolean value indicating if the element the method is called on matches the selector given as the argument
How can you retrieve the value of an element’s attribute?
Use the element.getAttribute() method