Hi!
Thanks so much for the reply.
This was the final set of code that I used that worked great for me:
$(document).ready(function() {
$('.pendingUsers').load('foo.php');
setInterval(function() {
$('.pendingUsers').load('foo.php');
}, 300000);
});
The first load is to inject the data into the DOM after it loads.
Thanks all for the help!
- sf
On 8/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> Hi Steve,
>
> What about this example?
>
> $('#div-id').load('url.php');
>
> More info can be found here:
> http://docs.jquery.com/Ajax#load.28_url.2C_params.2C_callback_.29
>
>
> Good luck!
>
> Rick
>
>