Web Analytics Made Easy -
StatCounter automatical reflesh per every second. - CodingForum

Announcement

Collapse
No announcement yet.

automatical reflesh per every second.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • automatical reflesh per every second.

    I have two html page in 2 frames.

    The first frame has a file named "first.html".

    The second frame has a file named "second.html".

    I like to give confinual reflesh to the second.html page.
    Continual reflesh means the second.html page contacts to the server continuously.

    refleshment interval can be, for example, per every second.
    Every two second would also be Okay.

    Please remember the "first.html" page doesn't refleshed automatically.


    Thanks in anticipation.
    Last edited by joonstar; Feb 16, 2004, 02:47 AM.
    Get my greedy up

  • #2
    Put this inside second.html

    <body onload="setTimeout('location.reload()', 1000)">

    The delay time is in milliseconds, change it to the desired value.
    Glenn
    vBulletin Mods That Rock!

    Comment


    • #3
      Thank you.
      Get my greedy up

      Comment

      Working...
      X