refresh part of page using javascript?

How to refresh couple of small fields of a web page every a few seconds using javascript? (to avoid window blinking if just call reload)
[136 byte] By [tangjun] at [2007-11-18 6:03:51]
# 1 Re: refresh part of page using javascript?
You can change a portion of the client region by using Div or Span

<div id=test1>sometext</div>

so in a script you can do this
test1.innerText = "Some other text";

I am not sure if you can make the script run every few seconds, i.e without a event being fired.

Satish
Satishpp at 2007-11-8 0:13:56 >