This is purely for debugging purposes. Is there a single command like:
addEventListener('*', myHandler)
in native js or:
$(document).on('*', myHandler)
in jQuery that would listen for any event no matter what type or namespace and call myHandler
when an event happens?
Or is there something in the browser's own devtools that might let you see all the events?