Created
February 27, 2017 18:21
-
-
Save gmemstr/90bedbd39ef3a2f06f60d24727b7be1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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