Created
May 7, 2018 11:37
-
-
Save DorukUlucay/cffd7fc51d7c65d38571163a05d1dd78 to your computer and use it in GitHub Desktop.
github api
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <!-- <title></title> --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
| <!-- <style></style> --> | |
| <!-- <link rel="stylesheet" type="text/css" href=""> --> | |
| </head> | |
| <body> | |
| <p id="repos"></p> | |
| <script> | |
| document.addEventListener("DOMContentLoaded", function(event) { | |
| $.ajax("https://api.github.com/users/dorukulucay/repos").done(function(r) { | |
| for (i in r) { | |
| var url = r[i]; | |
| $("#repos").append("<p><a href='" + url.html_url + "'>" + url.name + "</a></p>"); | |
| } | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment