Hi
How do I access a list of event handlers (added by jQuery) associated
with a particular DOM node ?
I.e.
If I had the following somewhere in my code.
$("#mydiv").mousemove(function() { .... });
Subsequently I want to inquire upon the DOM element $("#mydiv")[0]
about which mousemove events it is 'attached' to?
Is there a way to do this ?
weepy