js call 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);