9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
$( document ).ready(function() {
|
|
|
|
(function worker() {
|
|
$.getJSON('/state', function(data) {
|
|
document.getElementById('counter').textContent = data.counter;
|
|
setTimeout(worker, 5000);
|
|
});
|
|
})();
|
|
}); |