Re: Refreshing parts of a web site
- From: Neredbojias <monstersquasher@xxxxxxxxx>
- Date: 28 Sep 2007 09:48:37 GMT
Well bust mah britches and call me cheeky, on Thu, 27 Sep 2007 15:08:20
GMT John scribed:
On 26 Sep, 19:40, "J.O. Aho" <u...@xxxxxxxxxxx> wrote:
John wrote:
Hi,
Is there any way to update only a single object on a
web page (without using frames)? For instance a
picture that will change on a server depending on
some (server-side) state, for example the weather.
AJAX script that checks the server every X minute and change the
content of a div if there is a change.
Thanks. I found and modified a JavaScript that updates a div tag. But
right
now I activate the JavaScript function that posts the form to the CGI
script
with a button. How can I make a script that lies in the background and
calls my JavaScript update function once every minute or so?
Whatever the div-update code is, make it a function [say "divupdate()] and
do something like this
function repeatdivupdate() {
setInterval("divupdate()", 60000)
}
repeatdivupdate();
--
Neredbojias
Half lies are worth twice as much as whole lies.
.
- References:
- Refreshing parts of a web site
- From: John
- Re: Refreshing parts of a web site
- From: J.O. Aho
- Re: Refreshing parts of a web site
- From: John
- Refreshing parts of a web site
- Prev by Date: Re: FF2 & IE6 rendering differences
- Next by Date: Re: Konqueror and Padding
- Previous by thread: Re: Refreshing parts of a web site
- Next by thread: Firefox vs IE in padding
- Index(es):
Loading