If you use JQuery [http://jquery.com/] then you have likely already done events
like this:
$('button').click(function (e) {
alert('hello!');
});
JQuery's event wrapper is very useful and it allows you to easily bind to common
DOM events like click, keypress, change, etc. But did you know that