how to rerender page after 10 sec code example
Example 1: reload page jquery timer
setTimeout(function(){
window.location.reload(1);
}, 5000);
Example 2: location reload after 2 seconds
window.setTimeout(function(){location.reload()},3000)
setTimeout(function(){
window.location.reload(1);
}, 5000);
window.setTimeout(function(){location.reload()},3000)