Skip to content

Instantly share code, notes, and snippets.

@claudiainbytes
Created August 31, 2017 19:46
Show Gist options
  • Save claudiainbytes/7f99d2a9bfca48e2ca3782cdb26e373a to your computer and use it in GitHub Desktop.
Save claudiainbytes/7f99d2a9bfca48e2ca3782cdb26e373a to your computer and use it in GitHub Desktop.
var clickLocations = [];
function logClicks(x,y) {
clickLocations.push(
{
x: x,
y: y
}
);
console.log('x location: ' + x + '; y location: ' + y);
}
$(document).click(function(loc) {
logClicks(loc.pageX, loc.pageY);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment