There is no transcript to listen to all the events.
The closest thing you can get out of the box will indicate them manually:
$('#foo').bind('blur change click dblclick focus focusin focusout hover keydown ...', function() {
alert($(this).text());
});
Please note that plugins can trigger their own events, possibly with names. You cannot listen to these events without knowing them and manually pointing them out.
source
share