How do I find out what functions are called when a button is pressed in Chrome Console?

You may be looking for the “Event Listener Breakpoints” section on the right side of the Debugger area. Open that up and select the click event under “mouse”. See the screen image. Then click on the button in the app and you will immediately be taken to the code being executed.

enter image description here

Leave a Comment