Showing usage of Event Listeners Tab

Let’s use the Event Listeners Tab for the GFG site to check various event listeners of elements and remove them or filter out specific events.

  • Step 1: Using the Chrome browser, visit the GFG site and open the DevTools.
  • Step 2: In the DevTools, click the Select An Element option to focus on the element whose event listeners are to be viewed.
  • Step 3: In the Event Listeners tab, expand the event categories and remove individual events. You can right-click the event and set it as passive.
  • Step 4: Filter the events as passive or blocked. or check Ancestors to view all events of the ancestors of the selected element.

Showing usage of Event Listeners Tab

A web page may have many elements that event listeners associate with it. All these event listeners can be viewed and linked to their respective JS files in the Sources tab using the Event Listeners tab present in the Elements Tool of DevTools.


Event Listeners Tab in Google Chrome Browser

The Event Listeners Tab is present in the Elements tool in Chrome and is used to check various event listeners of the elements present in the web page. You get various options, such as filter, refresh, include ancestors, and many more, in the context menu.

Table of Content

  • Benefits of the Event Listeners Tab
  • Open the Event Listeners Tab in Chrome
  • Various options in the Event Listeners Tab
  • Showing usage of Event Listeners Tab

Similar Reads

Benefits of the Event Listeners Tab

The various benefits of the Event Listeners Tab are:...

How to open the Event Listeners Tab in Chrome

The Event Listeners Tab is present in the Elements tool in DevTools for Chrome. To open it, follow these steps:...

Various options in the Event Listeners Tab

You can expand any event listener and get all the lists of elements where they are defined. You also have the option to remove the event listener from the respective element and the option to toggle the passive of the event listener. You get the respective file name, which takes you to the sources tab. Right-click the expanded event listeners and select passive to manually toggle the passive parameter for the event....

Showing usage of Event Listeners Tab

Let’s use the Event Listeners Tab for the GFG site to check various event listeners of elements and remove them or filter out specific events....