Files
garden/public/js/wander.js
2024-06-21 10:40:48 +01:00

9 lines
231 B
JavaScript

function GetWanderCount(){
let element = document.getElementById('wander-count')
fetch('../json/counter.json')
.then((response) => response.json())
.then((json) => element.innerHTML = json['count']);
}
GetWanderCount()