Guest User

Untitled

a guest
Feb 20th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1.  
  2. var getMouseXY = function(){
  3.  
  4. names = [
  5. 'clientX','clientY',
  6. 'offsetX','offsetY',
  7. 'screenX','screenY',
  8. 'x', 'y'
  9. ];
  10.  
  11. for(var x=0; x<names.length; x++){
  12. name = names[x];
  13. domRef = document.getElementById(name);
  14. domRef.innerHTML = window.event[name];
  15. }
  16.  
  17. }
  18.  
  19. window.onload=function(){
  20. document.body.onmousemove=getMouseXY;
  21. }
Add Comment
Please, Sign In to add comment