javascript every second code example
Example 1: jquery call function every second
setInterval(function(){
//this code runs every second
}, 1000);
Example 2: run function every second javascript
setInterval(function(){
//this code runs every second
}, 1000);
Example 3: js loop every x seconds
(function loop() {
setTimeout(function () {
// execute script
loop()
}, 9000); //9000 = 9000ms = 9s
}());