DOM Event Delegation Flashcards
1
Q
What is the event.target?
A
the reference to which the event was engaged.
2
Q
Why is it possible to listen for events on one element that actually happen its descendent elements?
A
bubbling
3
Q
What DOM element property tells you what type of element it is?
A
event.target.tagName
4
Q
What does the element.closest() method take as its argument and what does it return?
A
the closest parent with that specific selector.
5
Q
How can you remove an element from the DOM?
A
element.remove()
6
Q
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?
A
Set up the eventlistener on the parent enclosing the elements.