page refresh with all the objects, howto

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Amzul
    New Member
    • Oct 2007
    • 130

    page refresh with all the objects, howto

    hello all

    i use <meta http-equiv="refresh" content="300" /> in the head
    but i notice that the pictures in the page are not refreshing

    i have picturs *.png its graphs so i can tell nothing is changing only if i press F5 or refresh button

    why? and how can i make the picture refresh use NO-CHACE?
  • iam_clint
    Recognized Expert Top Contributor
    • Jul 2006
    • 1207

    #2
    you can do something like

    Code:
    <html>
    <body>
    <script>
    window.setTimeout("window.location=\"?test=true\"", 30000);
    </script>
    </body>
    </html>
    This will refresh every 30 seconds

    Comment

    Working...