call function every 5 seconds in html code example
Example: jquery call function every second
setInterval(function(){
//this code runs every second
}, 1000);
setInterval(function(){
//this code runs every second
}, 1000);