Advertisement
Guest User

Untitled

a guest
May 5th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <script src="intelxdk.js"></script>
  2. <script src="xhr.js"></script>
  3.  
  4. $.get( MyURL, function( data ) {
  5. alert(data);
  6. }
  7.  
  8. <html>
  9. <head>
  10. <title>AJAX and XDK</title>
  11. <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=0;" />
  12. <script type="text/javascript" charset="utf-8" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
  13. <script src="intelxdk.js"></script>
  14. <script src="xhr.js"></script>
  15. <script>
  16. function doAJAX() {
  17. $.ajax({
  18. type:'GET',
  19. url:'http://time.jsontest.com/',
  20. success: function (data) {
  21. alert(JSON.stringify(data))
  22. }
  23. });
  24. }
  25. </script>
  26. <style>
  27. body {font-family:arial;background-color:white}
  28. </style>
  29. </head>
  30. <body>
  31. <h3>AJAX Call</h3>
  32. <button onclick="doAJAX()">AJAX Call</button>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement