DOM Flashcards
Why do we log things to the console?
for debugging or to know what you are working with
What is a “model”?
a representation or recreation of something that isn’t exact
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?
data type object
What is a DOM Tree?
any element and holds all the configuration and the sum of all its parts
Give two examples of document methods that retrieve a single element from the DOM.
getElementId(), querySelector()
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?
to use the variable and not calling the query function every time you need to use it
What console method allows you to inspect the properties of a DOM element object?
console.dir() or dir method
Why would a
tag need to be placed at the bottom of the HTML content instead of at the top?
to load all the content
What does document.querySelector() take as its argument and what does it return?
it takes a string element with css selector and matches it
What does document.querySelectorAll() take as its argument and what does it return?
it takes a string element with css selector and node lists (collection of nodes)
Why do we log things to the console?
to debug and to know what you are working with
What is the purpose of events and event handling?
something occurred and information gets sent out also for allowing users to interact with the web page
Are all possible parameters required to use a JavaScript method or function?
no
What method of element objects lets you set up a function to be called when a specific type of event occurs?
addEventListener(), has 2 argument the string containing the event and the second argument is the callback function
What is a callback function?
when you pass a function as a value to another function
What object is passed into an event listener callback when the event fires?
an object with a huge list of properties to describe the event that just occurred
What is the event.target? If you weren’t sure, how would you check? Where could you get more information about it?
the element where the event occurred. log it out or mdn.
What is the difference between these two snippets of code?
element.addEventListener(‘click’, handleClick)
element.addEventListener(‘click’, handleClick())
the first one calls the function as a call back, while the second one calls the function immediately and nothing gets returned
What is the className property of element objects?
the value of the class attribute (not a selector)
How do you update the CSS class attribute of an element using JavaScript?
setAttribute() method
What is the textContent property of element objects?
element . textContent
How do you update the text within an element using JavaScript?
element name with dot notation textContent “=” new string or variable
Is the event parameter of an event listener callback always useful?
no, but most of the time it will be
Would this assignment be simpler or more complicated if we didn’t use a variable to keep track of the number of clicks?
more complicated cause then you would have to code each “click”
Why is storing information about a program in variables better than only storing it in the DOM?
then you can use the variable instead of querying the dom element everytime
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 <form>?
submit event fires on the form element itself only
What does the event.preventDefault() method do?
prevents default behavior
What does submitting a form without event.preventDefault() do?
it allows the page to refresh and to submit the data to the same page
What property of a form element object contains all of the form’s controls.
form.elements or the elements property
What property of a form control object gets and sets its value?
the value property
What is one risk of writing a lot of code without checking to see if it works so far?
you wont know what part is working or not working
What is an advantage of having your console open when writing a JavaScript program?
you can see if there is an error
Does the document.createElement() method insert a new element into the page?
No
How do you add an element as a child to another element?
appendChild() method
What do you pass as the arguments to the element.setAttribute() method?
(name of the attribute in a string, new value)
What steps do you need to take in order to insert a new element into the page?
createElement() -> make configurations (add text and class)-> querySelect for parent ->
parent.appendChild().
What is the textContent property of an element object for?
text content
Name two ways to set the class attribute of a DOM element.
className or setAttribute()
What are two advantages of defining a function to create something (like the work of creating a DOM tree)?
you dont have to create a dom tree over and over again as well as gives reusability
What is the event.target?
the element that was clicked on or interacted with
Why is it possible to listen for events on one element that actually happen its descendent elements?
event bubbling to the top
What DOM element property tells you what type of element it is?
tag name property value all uppercase
What does the element.closest() method take as its argument and what does it return?
takes css selector as argument and returns the nearest parent element that matches with the css 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?