Advertisement
claukiller

Untitled

Mar 8th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
  4. <script>
  5. $.ajax({
  6. method:'get',
  7. url: 'http://localhost:9005/list',
  8. dataType: "json",
  9. success: function(response){
  10. $.each(data, function(i, obj) {
  11. //use obj.id and obj.name here, for example:
  12. $('#list').append('<li>'+WebGLObject+'</li>')
  13. });
  14. }
  15. })
  16. </script>
  17. </head>
  18. <body>
  19. <ul id="list"></ul>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement