DOM Flashcards
Why do we log things to the console?
to verify and check code
What is a “model”?
a representation of something
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
What is a DOM Tree?
an element plus its content and configuration
Give two examples of document methods that retrieve a single element from the DOM.
querySelector and getElementbyId
Give one example of a document method that retrieves multiple elements from the DOM at once.
querySelectorAll
Why might you want to assign the return value of a DOM query to a variable?
If you want to use the same DOM element more than once
What console method allows you to inspect the properties of a DOM element object?
console.dir
Why would a
tag need to be placed at the bottom of the HTML content instead of at the top?
it needs to load all the elements
What does document.querySelector() take as its argument and what does it return?
it takes strings as an argument and returns the first element that matches
What does document.querySelectorAll() take as its argument and what does it return?
it takes a string as an argument and returns a nodelist
What is the purpose of events and event handling?
it allows the developer to make changes when the user does something
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
What is a callback function?
taking a function definition and passing it down
What object is passed into an event listener callback when the event fires?
target
What is the event.target?
the element where the event originated on
What is the className property of element objects?
it holds the value of the class name property in an html document
How do you update the CSS class attribute of an element using JavaScript?
elementName.className = newClassName
What is the textContent property of element objects?
it holds all the text that the element includes
How do you update the text within an element using JavaScript?
elementName.textContent = newText
Is the event parameter of an event listener callback always useful?
no
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
What does the event.preventDefault() method do?
Prevents the default action
What does submitting a form without event.preventDefault() do?
it reloads the page
What property of a form element object contains all of the form’s controls.
the elements property
What property of a form control object gets and sets its value?
the form method
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?
Append Child
What do you pass as the arguments to the element.setAttribute() method?
the name of the attribute and value
What steps do you need to take in order to insert a new element into the page?
Create element, query an element on the html document then appendChild the new element to the html element
What is the textContent property of an element object for?
to set or get the text value of an element
Name two ways to set the class attribute of a DOM element.
setAttribute, className
What are two advantages of defining a function to do create something (like the work of creating a DOM tree)?
you can use it more than once and its easily callable
What is the event.target?
where the event started
Why is it possible to listen for events on one element that actually happen its descendent elements?
due to event bubbling
What DOM element property tells you what type of element it is?
tagName.property
What does the element.closest() method take as its argument and what does it return?
takes css selector and its first ancestor
How can you remove an element from the DOM?
remove method
What does the element.matches() method take as an argument and what does it return?
string
How can you retrieve the value of an element’s attribute?
getAttribute