Where I can find a complete list of all jQuery supported events (like click
, mouseup
etc) with some explanations when they are triggered? I am looking for those that can be binded:
$('#foo').bind('click', handler);
For example I just found out by accident that there is paste
event but I can't find any references to it anywhere in their docs. What else is there?