Catching any click performed using jQuery

Viewed 36027

The noob way to do it I guess would be

$('*').click(function(){...});

But is there any way I can catch any type of click, without having to register a listener for every object in the DOM?


Help would be amazing. =)

5 Answers
Related