How to find event handlers on an object in jQuery 1.8+?
var func = function(){ alert(1); }; var obj = $(\'#obj\'); obj.on(\"click\", func); // obj.data(\'eve
to find event handlers of an element in jQuery 1.8+ you've got to do this way:
$._data($("YOUR-SELECTOR-HERE").get(0), "events")