What is event bubbling?

Forums JavaScriptWhat is event bubbling?
Staff asked 2 years ago

Answers (1)

Add Answer
Jaydip Mali Marked As Accepted
Staff answered 2 years ago

Event bubbling is a method of event propagation in the HTML DOM API when an event is in an element inside another element, and both elements have registered a handle to that event. It is a process that starts with the element that triggered the event and then bubbles up to the containing elements in the hierarchy. In event bubbling, the event is first captured and handled by the innermost element and then propagated to outer elements.

Syntax:

addEventListener(type, listener, useCapture)
  • type: Use to refer to the type of event.
  • listener: Function we want to call when the event of the specified type occurs.
  • userCapture: Boolean value. The boolean value indicates the event phase. By Default useCapture is false. It means it is in the bubbling phase.

Example 1: This example shows the working of event bubbling in JavaScript.

<!DOCTYPE html>
<html>

<head>
  <title>
    Bubbling Event in Javascript
  </title>
</head>

<body>

  <h2>Bubbling Event in Javascript</h2>

  <div id="parent">
  <button>
    <h2>Parent</h2>
  </button>
  <button id="child">
    
<p>Child</p>

  </button>
  </div><br>


  <script>
    document.getElementById(
"child").addEventListener("click", function () {
      alert("You clicked the Child element!");
    }, false);

    document.getElementById(
"parent").addEventListener("click", function () {
      alert("You clicked the parent element!");
    }, false);
  </script>

</body>

</html>

From the above example, we understand that in bubbling the innermost element’s event is handled first and then the outer: the <p> element’s click event is handled first, then the <div> element’s click event.

Subscribe

Select Categories