Forum Discussion
AdamKeever1
6 years agoQrew Commander
Dan posted a pastie for doing an automated reload of a home page. It works and you can adjust the time:
<script>
setTimeout(function(){
parent.location.reload(1);
}, 180000);
</script>
Maybe try the .reload(1) function with the "oninput" event?
<script>
setTimeout(function(){
parent.location.reload(1);
}, 180000);
</script>
Maybe try the .reload(1) function with the "oninput" event?