firmware-base/vendor/sming/Sming/samples/Basic_WebSkeletonApp/files/index.js
2026-01-28 16:42:43 +01:00

9 lines
207 B
JavaScript

$( document ).ready(function() {
(function worker() {
$.getJSON('/state', function(data) {
document.getElementById('counter').textContent = data.counter;
setTimeout(worker, 5000);
});
})();
});