Quiz: Event Delegation
This lesson will test your understanding of event delegation in JavaScript.
We'll cover the following...
Question 1 #
Q
Which of the following methods can prevent event bubbling?
A)
event.stop
B)
event.stopPropagation()
C)
event.stopBubble
D)
event.cancelBubble
...