Guest User

Untitled

a guest
Dec 30th, 2013
64
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. <head>
  3. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
  4.  
  5. $(document).ready(function(){
  6. $("button").click(function(){
  7. $.getJSON("https://prod.api.pvp.net/api/lol/euw/v1.1/summoner/by-name/krepo?api_key=b05c2251-f659-4d24-8b5f-6b25a482b42a" , function(result){
  8. $.each(result, function(key, value){
  9. $("div").append("<b>" +key+"--"+value +"</b><br/>");
  10. });
  11. });
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <button>Get Json Data</button>
  18. <div></div>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment