[jQuery] Re: Autorefreshing DIV

2008-09-05 Thread real
setInterval(function(){ $('#my_refreshable_div').load('some_folder/my_div_content.html'); }, 2000) On Sep 1, 7:02 am, Sir Rawlins <[EMAIL PROTECTED]> wrote: > Good morning all, > > I have a requirement to automaticly refresh a DIV with some content > from another URL every couple of secon

[jQuery] Re: Autorefreshing DIV

2008-09-01 Thread Boersnoes
You could probably start with the jquery.timer plugin (http:// plugins.jquery.com/project/Timer) And use the $("selector").html() method to fill it up. Boris Sir Rawlins wrote: > Good morning all, > > I have a requirement to automaticly refresh a DIV with some content > from another URL every co