Mit den JavaScript kann man einen automatischen Reload herbeiführen.
Autor: Lee Underwood
Demo ist in die Seite integriert. Reload erfolgt nach einer gewissen Zeit.
in <head> einfügen
<script type="text/javascript">
<!-- Begin
/* http://www.scriptwelt.org
Created by: Lee Underwood
Because this is a true refresh, you might want to put a
notice on the page that it refreshes every "X" minutes */
function reFresh() {
location.reload(true)
}
/* Set the number below to the amount of delay, in milliseconds,
you want between page reloads: 1 minute = 60000 milliseconds. */
window.setInterval("reFresh()",300000);
// End -->
</script>
|