Skip to content

Instantly share code, notes, and snippets.

@qborreda
Created May 7, 2013 09:08
Show Gist options
  • Save qborreda/5531310 to your computer and use it in GitHub Desktop.
Save qborreda/5531310 to your computer and use it in GitHub Desktop.
jQuery Mouse Coordinates
<span id="spnCursor"></span>
$(document).ready(function(){
$(document).mousemove(function(e){
$('#spnCursor').html("X Axis : " + e.pageX + "<br/> Y Axis : " + e.pageY);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment