-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy path17.event-bubbling-and-capturing.js
50 lines (37 loc) · 1.29 KB
/
17.event-bubbling-and-capturing.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
Sometimes click event is attached to a `parent element`, somehow the click event is trigged even clicking on the children.
This is due to event bubbling.
Event Bubbling: click event from the child to parent.
Event Capturing: click event from parent to child.
Example - Event Bubbling : element.addEventListener(function(){}, false); // False by default
Example - Event Capturing: element.addEventListener(function(){}, true); // event capturing
Reference:
1. https://javascript.info/tutorial/bubbling-and-capturing
2. http://www.w3schools.com/jsref/event_bubbles.asp
*/
// Example
/* HTMl
<div class="parent">
<div>Child 1
<div>Child 2
<div>Child 3</div>
</div>
</div>
</div>
*/
// Example -Event Bubbling
// Adding `click event` handler to `parent element`
document.querySelector(".parent").addEventListener(function () {
// child 3 --> child 2 --> child 1 --> parent
console.log(event.bubbles); // true
console.log(event.target);
// To stop event bubbling up to parent
event.stopPropagation();
}, false);
// Example - Event Capturing
document.querySelector(".parent").addEventListener(function () {
//parent --> child 1 --> child 2 --> child 3
console.log(event.target);
// To stop event capturing
event.stopPropagation();
}, true); // To enable event capturing