jQuery Call Function каждую секунду
setInterval(function(){
//this code runs every second
}, 1000);
Grepper
setInterval(function(){
//this code runs every second
}, 1000);
function func(){
console.log("Ran")
}
setInterval(func,1000)//Runs the "func" function every second