Advertisement
zidniilma

Kendali Sendiri

Sep 17th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Kendali Digital dari Internet</title>
  6. <script type="text/javascript" src="https:// cdnjs.cloudflare.com/ajax/libs/jquery/2.2.1/jquery.min.js"></script>
  7. </head>
  8. <body>
  9. <h4 for="led">Kendali Digital</h4>
  10. <input type="radio" name="led" value="on"/>Nyala
  11. <input type="radio" name="led" value="off" checked="checked"/>Mati
  12. <script type="text/javascript">
  13. $(input:radio [name="led"]).change(function(e){
  14. var api_key = 3c7f6c6a7e469c73a756d347be2d363a;
  15. var api_url = http://api.geeknesia.com/api/control/'+this.value+'api_key='+api_key
  16. $.get (api_url, null, function(respon)
  17. {
  18. console.log(respon)
  19. })
  20. })
  21. </script>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement