If I have the following HTML markup:
<div class="foo">bar</div>
How can I find which click events are linked to this element / jQuery selector?
Is there a way I can get a list of file locations or something using Google Chrome Console?
Say I have the following jQuery:
$(".foo").click(function(){
//do something
});
$("div").click(function(){
//do something else
});
$("table").click(function(){
//do something else
});
I would want something like:
foobar.js (line 1)
foobar.js (line 4)