Menu

Reload feeds.php every ... seconds

General
2007-06-03
2013-04-17
  • LachendesKnie

    LachendesKnie - 2007-06-03

    header.php in head-Tag

    [code]
    <script>
    timeSlap=60 // seconds
    reloading=function()
    {
        setTimeout("reloading()",1000);

        status=timeSlap+" seconds reload";
        if(timeSlap>0) timeSlap--;
        else location.reload();
    }
    </script>
    [/code]

    feeds.php in body-Tag onload="reloading()"

     
    • Kevin Bennett

      Kevin Bennett - 2007-06-05

      It's a good idea.  We might even have a feature request on it.

       

Log in to post a comment.