table parsing test no 1

This commit is contained in:
d3m1g0d
2019-04-06 15:51:02 +02:00
parent 4b7f96a378
commit fe07f41425

View File

@@ -3,5 +3,8 @@ function updateData () {
const url = 'http://' + window.location.hostname + ':5000/data';
$.get(url, function (data, status) {
$('#debug').text(data);
for (i in data[0]) {
$(i).text(data[0][i]);
}
})
}