Guest User

index.html

a guest
Apr 20th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <script>
  4.  
  5.         function tilt() { var tilt = document.getElementById("tiltRange").value;
  6.                           document.getElementById("tilt_Range").innerHTML = tilt;
  7.                           var xhttp = new XMLHttpRequest();
  8.                           xhttp.open("GET", "servo.php?dir=P1-11=" + tilt, true);
  9.                           xhttp.send();
  10.                         }
  11. </script>
  12.  
  13. <body>
  14.  
  15.         <button onclick="tilt()">Tilt</button>
  16.  
  17.         <input type="range" id="tiltRange" value="140" max="170" min="60">
  18.  
  19.         <text id="tilt_Range"></text>
  20.  
  21. </body>
  22.  
  23. </html>
Add Comment
Please, Sign In to add comment