DOM Flashcards
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?
Its easier to find if the browser needs to use the same elements 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?
So it can create a model after the document.
What does document.querySelector() take as its argument and what does it return?
Selectors, and it returns an HTML element object representing the first element in the document that matches the specified set of CSS selectors, or null is returned if it doesn’t find a match.
What does document.querySelectorAll() take as its argument and what does it return?
Selectors and it returns a nodelist or an empty nodelist if it doesn’t find any matches.
What method of element objects lets u set up a function to be called when a specific type of event occurs?
the eventTarget.addeventListener();
What is a callback function
A function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action.
what is the object passed into an event listener callback when the event fires?
The event object.
What is the event.target? if you weren’t sure, how would you check? Where could you get more information about it?
The target property of the event interface which references the object onto which the event was dispatched. Console.log(), MDN?
What is the difference between these two snippets of code?element.addEventListener(‘click’, handleClick) element.addEventListener(‘click’, handleClick())
the first waits for the event to happen then fires the function and the second one fires the event when the page gets loaded.
what do [ ] square brackets mean in function and method syntax documentation?
optional parameters
Does the document.createElement() method insert a new element into the page?
No it just creates an element
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 and value
What steps do you need to take in order to insert a new element into the page.
Create the element create elements nested into the outer element and append them to said element.
What is the text content property of an element object for?
To retrieve or replace the text content in the dom element
Name two ways to set the class attribute of a DOM element
setAttribute(); and .className
What are two advantages of defining a function to do create something ( like the work of creating a DOM tree)?
you dont have to go into the HTML document to create it and everything is all in one spot?
it lets you use it where ever you want and you can reuse it.
what is the event.target?
The target property of the event interface which is reference to the object onto which the event was dispatched.
Why is it possible to listen for events on one element that actually happen its descendent elements?
because of event bubbling.
what DOM element property tells you what type of element it is?
element.tagName
What does the element.closest() method take as its argument and what does it return?
the closest method returns the first encounter ancestor element that matches the selector provided
How can you remove an element from the DOM?
the remove() method
If you want to insert new clickable DOM elements into the page using JavaScript, how could you avoid adding an event listener to every new element individually?
By just targeting the parent element and putting it on the element that holds the element.
What is the affect of setting an element to display: none?
it disappears
what does the element.match() method take as an argument and what does it return
Selector string as an argument
at what steps of the solution would it be helpful to log things to the console?
every step of the way
If you were to add another tab and view to your HTML but you didn’t use event.delegation, how would your javascript code be written instead?
we’d have to add an event listener to each element.
if you didn’t use a loop to continually show or hide the views in the page, how would your javascript code be written instead?
you’d need a conditional for each view.
How can you retrieve the value of an elements attribute?
getAttribute()