Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. $.get("http://165.227.74.3:8082/listUsers", function(data, status){
  9. var obj = JSON.parse(data)
  10. document.getElementById("demo").innerHTML =
  11. console.log(obj);
  12. alert("Data: " + data + "\nStatus: " + status);
  13. });
  14. });
  15. });
  16. </script>
  17. </head>
  18. <body>
  19. <p id="demo">test</p>
  20. <button>Send an HTTP GET request to a page and get the result back</button>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement