JavaScript/Working with the Mouse
JavaScript Console Tests
Test x,y
window.onmouseover= function(){document.title = [event.x,event.y];};
Test offsetX,offsetY
window.onmouseover= function(){document.title = [event.offsetX,event.offsetY];};
Test clientX,clientY
window.onmouseover= function(){document.title = [event.clientX,event.clientY];};
Test pageX,pageY
window.onmouseover= function(){document.title = [event.pageX,event.pageY];};
References
CSS Object Model: Extensions to the mouseevent Interface
Creating an HTML5 Canvas Painting Application
DOM Events Portability: Not that Hard
Last modified on 18 March 2012, at 23:07