When using jQuery's unbind, is there a way to see what functions will no longer be executed when that event is triggered?
For example:
var handler = function() {
alert('The quick brown fox jumps over the lazy dog.');
};
$('#foo').bind('click', handler);
$('#foo').unbind('click');
Is something returned that will let me know that handler was a function that was removed in the unbind?