I added jQuery click events dynamically using the click()-function:
$("#elementId").click(function() {
debugger;
//Some code
});
I realize that you can find the events by using the data attribute:
$('#elementId').data("events");
But what if you want to find them, if any, dynamically? E.g.
<div id="containerWithComplexStructure">
//Some elements with .click events may be in here
</div>
How do you then find them if you don't know their id or class?
And can you access them through the Chrome Developer Tools frame (or similar tools), being able to browse their variables etc.?
Similar to this (click the image to enlarge):
For a single known element see: How to debug JavaScript/jQuery event bindings with Firebug (or similar tool)