Get the mouse cursor x and y axis with following jQuery snippet.
$(document).mousemove(function(e){
$(document).ready(function() {
$().mousemove(function(e){
$(’#XY’).html(”X Axis : ” + e.pageX + ” | Y Axis ” + e.pageY);
});
});
Get the mouse cursor x and y axis with following jQuery snippet.
$(document).mousemove(function(e){
$(document).ready(function() {
$().mousemove(function(e){
$(’#XY’).html(”X Axis : ” + e.pageX + ” | Y Axis ” + e.pageY);
});
});