-
Notifications
You must be signed in to change notification settings - Fork 0
/
hufflepuff.js
43 lines (39 loc) · 1.2 KB
/
hufflepuff.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const hup = document.getElementById("hup");
hup.addEventListener("click",function(event){
event.preventDefault();
var url = "https://hp-api.herokuapp.com/api/characters/house/hufflepuff";
fetch(url,{
method:"GET"
}).then(function(response) {
if(response.ok) {
return response.json();
} else {
throw new Error(Error);
}
}).then(function(data){
// console.log(data);
appenData(data);
}).catch(function(error){
console.log(error);
});
});
function appenData(data){
var firstcontainer = document.getElementById("hup");
for (var i=0; i< data.length; i++) {
var div = document.createElement("div");
div.innerHTML =
`<table>
<tr>
<td>${data[i].name}</td>
<td>${data[i].dateOfBirth}</td>
<td>${data[i].species}</td>
<td>${data[i].alternate_names}</td>
<td>${data[i].wand.wood}</td>
<td>${data[i].wand.core}</td>
<td>${data[i].wand.length}</td>
<td>${data[i].patronus}</td>
</tr>
</table>`
firstcontainer.insertAdjacentElement("beforeend",div)
}
}