You can attach a click event to the document itself, and not to any specific element. These events should contain the coordinates of the mouse during the click (clientX and clientY).
, false, , .
$(document).click(function(ev){
console.log(ev.clientX, ev.clientY)
})
. , , , .
, .