You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
191 B
JavaScript

(function () {
async function poll () {
var d = await (await fetch("/cgi-bin/radioimplicancies.cgi")).json();
console.log("d", d);
}
window.setInterval(poll, 5000);
})();