I have a page where some event listeners are attached to input boxes and select boxes. Is there a way to find out which event listeners are observing a particular DOM node a
To get all eventListeners on a page printed alongside their elements
Array.from(document.querySelectorAll("*")).forEach(e => { const ev = getEventListeners(e) if (Object.keys(ev).length !== 0) console.log(e, ev) })