location.reload(true) more than 5 seconds 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)