I have been playing with the Chrome Developer Tools lately. Here is a cool feature I didn't know about. There are many times I have run some code in the console simply to bind to an event and simply log the result. $("body").bind("click mousedown", function(e) { console.log(e); }); There is a built in alternative called monitorEvents. Here is a quick demo on how to use it: Inspect an element (see

