Is there a easy way to find all js events that are associated with a specific HTML element using Chrome?
Example:
HTML element
<a href="#" class="cancel_link refresh_page">Cancel</a>
Script:
<script type="text/javascript">
$(function () {
$(".cancel_link").click(function () {
//do something
});
$(".refresh_page").click(function () {
//do something
});
});
</script>