Page 1 of 1

Auto refresh page

Posted: Sat 11. Jun 2016, 19:56
by BJT
Hello,

is it possible to make an page 'auto refresh'?
so it would automatically be refreshed every 5 minutes?

Thanks,
Ben

Re: Auto refresh page

Posted: Sun 12. Jun 2016, 10:19
by Gert
Hi Ben,

there is no CMSimple specific solution. Ask Google for "page refresh automatic", and you will find many solutions by html and JavaScript. Nothing else I have done:

Code: Select all

<script type="text/javascript">
// <![CDATA[
setTimeout(function(){window.location.reload(1);},300000);
// ]]>
</script>
Gert

Re: Auto refresh page

Posted: Sun 12. Jun 2016, 11:55
by BJT
hi gert,

thanks, i will look into it.

gr. Ben