Advertisement
foxwsp

Untitled

Feb 10th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5.  
  6. <title>AJAXjSON</title>
  7. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  8. </head>
  9. <script>
  10. function myFunction()
  11. {
  12. $.ajax({
  13. url: "http://155.158.112.252/ajax/rand.php",
  14. dataType: "jsonp"
  15. }).done(function(data) {
  16. document.body.innerHTML += data;
  17. console.log(data);
  18. });
  19. }
  20. </script
  21. <body>
  22. <button type="button" onclick="myFunction()">Try it</button>
  23. <div id="wynik">Wynik zapytania: </div>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement