Showing posts with label mouse. Show all posts
Showing posts with label mouse. Show all posts

Thursday, July 24, 2008

Track mouse with jQuery

 

$(document).ready(function()
 {
  $().mousemove(function(e)
   {
    $('p').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
  });
});

 

Source