dom-event-delegation Flashcards

1
Q

What is the event.target?

A

it gives what element node was targeted upon the event that was fired; gives the target property of the event interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why is it possible to listen for events on one element that actually happen its descendent elements?

A

because of event bubbling

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What DOM element property tells you what type of element it is?

A

tagName property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does the element.closest() method take as its argument and what does it return?

A

it takes a string selector and returns the closest parent/ancestor element with the selector or itself

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you remove an element from the DOM?

A

.remove() method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

add the event listener to the parent node and delegate the child nodes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly