T document is ready to be manipulated, we'll listen for when the user moves his or her mouse (mousemove).
$(document).ready(function(){
$(document).mousemove(function(e){
$('#status').html(e.pageX +', '+ e.pageY);
});
})
In HTML = apply id=status to a block tagjQueryexample

