I'm looking for a way to intercept all mouse events (especially clicks) on a web page.
My first instinct was $('body').click(....)
But that's not capturing the event if any other Handler is attached for a particular event.
To put the question in context: I'm writing a "statistics" module for my web app. We want to keep track of all user interactions on the pages to adapt. If we see they don't use a functionality we will add a tooltip for example.
I have following frameworks :
jQuery, Knockout and a little Framework "home made"
What I want is a function which is called on each click with mouse position.