I was reading through the solution to a question about finding registered event handlers on an object, and it nearly solved my problem.
My problem extends a bit further though - I now want to know the state of each of these event handlers. Are they (or some of them) still listening, have they started executing, or are they finished executing.
EDIT: "working" code to get the registered events:
$._data( document.body, "events" )["customEventName"]
To explain my motivation, and/or if you are bored, please check out my related post. I was hoping to debug further, and/or kill mid-action listeners, based on the answers to this question.