javascript call function every 1 second till sec 5 code example
Example: jquery call function every second
setInterval(function(){
//this code runs every second
}, 1000);
setInterval(function(){
//this code runs every second
}, 1000);