I notice in the jsfiddle here -http://jsfiddle.net/6NLsm/1/ - that clicking in the beige box causes an entry into the mousemove handler. How is a click considered to be a mousemove?
Thanks
$(function() {
$('body').mousemove(function(e){
console.log("mousemove hander: x="+e.clientX+",y="+e.clientY);
});
});