javascript do function every 10 seconds code example
Example 1: jquery call function every second
setInterval(function(){
//this code runs every second
}, 1000);
Example 2: js every x seconds
// your function
function myTimer() {
console.log(' each 1 second...');
}
var myVar = setInterval(myTimer, 1000); //setting the loop with time interval
clearInterval(myVar); //call this line to stop the loop