"Anthony Papillion II" <> wrote in message
news:1100134024.WnSlEdwkSAurBkwcLlSi6g@teranews...
> > http://jibbering.com/2002/4/httprequest.html
> >
> > Jim.
>
> Hi Jim,
>
> Thanks for the URL. I am still a bit confused though. I understand how to
> make requests in the formats discussed on the page you referred me to. But
I
> still don't understand how only *part* of the page is being reloaded
without
> touching the rest of it. Maybe I'm missing something subtle in the
> discussion on the page you sent me. But it doesnt seem to really answer my
> question.
>
You grab the container for the section you want to update,
ie. a <div id='blabla'> by the help of .getElementById(...),
and change its content with either .innerHTML =..., or
by changing the nodes in the DOM-tree, with the result from
the request.
--
Dag.