Auto refresh page

CMSimple 4.0 und höher
Post Reply
BJT
Posts: 5
Joined: Fri 6. May 2016, 12:49

Auto refresh page

Post by BJT »

Hello,

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

Thanks,
Ben
Gert
Posts: 2082
Joined: Sun 18. Nov 2012, 14:18

Re: Auto refresh page

Post 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
Gert Ebersbach | CMSimple | Templates - Plugins - Services
BJT
Posts: 5
Joined: Fri 6. May 2016, 12:49

Re: Auto refresh page

Post by BJT »

hi gert,

thanks, i will look into it.

gr. Ben
Post Reply