Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
- $(document).ready(function(){
- $("button").click(function(){
- $.getJSON("https://prod.api.pvp.net/api/lol/euw/v1.1/summoner/by-name/krepo?api_key=b05c2251-f659-4d24-8b5f-6b25a482b42a" , function(result){
- $.each(result, function(key, value){
- $("div").append("<b>" +key+"--"+value +"</b><br/>");
- });
- });
- });
- });
- </script>
- </head>
- <body>
- <button>Get Json Data</button>
- <div></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment