You can show all the data referenced by jQuery elements:
console.log(jQuery.cache);
Or only for events (for those elements that have them):
for(name in jQuery.cache) { if(jQuery.cache[name]['events']) console.log(jQuery.cache[name]['events']); }
user113716
source share