Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="http://yandex.st/jquery/1.5.0/jquery.min.js" type="text/javascript"></script>
  4. <script type='text/javascript'>
  5. window.onload = function(e){
  6. var xMove = 0;
  7. var yMove = 0;
  8.  
  9. function mouseMove(event){
  10. xMove = event.pageX;
  11. yMove = event.pageY;
  12. $.get('http://reponline.url.ph/connection.php', {xMove:xMove, yMove:yMove}, function(data){
  13. document.getElementById("divTest").innerHTML = data;
  14. }
  15.  
  16. );
  17. }
  18. document.onmousemove = mouseMove;
  19. }
  20. </script>
  21. <title>
  22. </title>
  23. </head>
  24. <body>
  25. <button id="startConnection">Начать</button>
  26. <div id="divTest">123</div>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement