-
-
Save akhyaruu/82ca76a920339c37bffcabade5d496a5 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Ajax 3 - External API</title> | |
<style> | |
.user { | |
display: flex; | |
background: #f4f4f4; | |
padding: 10px; | |
margin-bottom: 10px; | |
} | |
.user ul { | |
list-style: none; | |
} | |
</style> | |
</head> | |
<body> | |
<button id="button">Load Github Users</button> | |
<br> | |
<h1>Github Users</h1> | |
<div id="users"></div> | |
<img src="" alt="" width=""> | |
<script> | |
document.getElementById('button').addEventListener('click', loadUsers); | |
// load github users | |
function loadUsers() { | |
let xhr = new XMLHttpRequest(); | |
xhr.open('GET', 'https://api.github.com/users', true); | |
xhr.onload = function () { | |
if (this.status == 200) { | |
let users = JSON.parse(this.responseText); | |
// kamu bisa kustomisasi bagian ini | |
let output = ''; | |
for (var i in users) { | |
output += | |
'<div class="user">' + | |
'<img src="' + users[i].avatar_url + '" width="120">' + | |
'<ul>' + | |
'<li>ID: ' + users[i].id + '</li>' + | |
'<li>Login: ' + users[i].login + '</li>' + | |
'</ul>' + | |
'</div>'; | |
} | |
document.getElementById('users').innerHTML = output; | |
} | |
} | |
xhr.send(); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment