I would like to get current mouse position but I don’t want to use:
$(document).bind('mousemove',function(e){
$("#log").text("e.pageX: " + e.pageX + ", e.pageY: " + e.pageY);
});
because I just need to get the position and process the information
I don’t believe there’s a way to query the mouse position, but you can use a
mousemovehandler that just stores the information away, so you can query the stored information.But almost all code, other than
setTimeoutcode and such, runs in response to an event, and most events provide the mouse position. So your code that needs to know where the mouse is probably already has access to that information…