Skip to content

Instantly share code, notes, and snippets.

@gmemstr
Created February 27, 2017 18:21
Show Gist options
  • Save gmemstr/90bedbd39ef3a2f06f60d24727b7be1a to your computer and use it in GitHub Desktop.
Save gmemstr/90bedbd39ef3a2f06f60d24727b7be1a to your computer and use it in GitHub Desktop.
setInterval(RequestStat, 1000);
var table = document.getElementById("table");
var i=1;
function RequestStat() {
if (document.getElementById("rts").checked == true) {
console.log(i);
var row = table.rows[i];
var panel = row.id;
console.log(row);
//Request(panel, setRow, "GET", row);
if (i < table.rows.length){ i++; }
else { i = 1; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment