Guest User

Untitled

a guest
Jan 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(function(){
  2. var mouseX = 0, mouseY = 0, limitX = 150-10, limitY = 150-10;
  3.  
  4. $(window).mousemove(function(e){
  5. console.log('x - '+e.pageX+' y - '+e.pageY);
  6. }
  7. });
Add Comment
Please, Sign In to add comment