I know you can see the event listeners in the Chrome Inspector but i\'m doing some debugging work and there are so many event listeners lying around I\'d like to disable som
Simply:
getEventListeners(document).click[0].remove()
This works with other elements, too:
getEventListeners($('#submit-button')[0]).click[0].remove()
And other types of events:
getEventListeners($('#login-form')[0]).submit[0].remove()