Вы можете попробовать приведенный ниже фрагмент кода:
index. html
<html>
<head>
<body onClick="refreshPage()">
this page will refresh in every 10 seconds
</body>
</html>
<script src="script.js"></script>
script. js
function refreshPage(){
window.location.reload();
}
setTimeout(function(){
window.location.reload();
}, 10000);