How can I get the mouse coordinates on the webpage (not the body as it may be smaller than the viewport) but do not register any scrollbar clicks. This code below also tracks any coordinates from clicks that happen on the scrollbars and I don't want that
$(document).bind('mousedown', function(evt) {
var x = evt.pageX + document.body.scrollLeft;
var y = evt.pageY + document.body.scrollTop;
});