It looks like you want to see the click event handlers registered for the item.
You can use the event data to achieve this in the console, although you should notice that this is a private method - the non-documented one may change in the future without notice
Example:
var clicks = jQuery._data( jQuery('element')[0] , "events" ).click;
Read this question also
Demo: Fiddle
source share