Search for code associated with an event listener

I am trying to find a JavaScript string that binds an event to a node. The Chrome inspector shows me a few 'click' entries in the event listeners, but each one just points to a single line in _createResponder in prototype.js. I would like to know where these events were related, and what code works when they fire. Is there any way to find out?

+3
source share

Source: https://habr.com/ru/post/1794807/


All Articles