Skip to content

Instantly share code, notes, and snippets.

@szaranger
Created August 16, 2022 23:57
Show Gist options
  • Save szaranger/70d77d4d0129b996b68273511a4ed5c3 to your computer and use it in GitHub Desktop.
Save szaranger/70d77d4d0129b996b68273511a4ed5c3 to your computer and use it in GitHub Desktop.
const data = getData();
setInterval(function() {
const node = document.getElementById('id');
if(node) {
// Do stuff with node and data.
node.innerHTML = JSON.stringify(data));
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment