Any DHTML gurus here?
I'm looking for some pointers or links that explain how to do the following. I have a web page with a list of stuff. Using AJAX, I want to add items to the top of the list, and then have the rest of the list scroll down smoothly so that the freshly added items scroll into view, as well as remove the bottom items.
I know how to do the ajax part of it, and I'm well versed in javascript, but I'm not sure how to massage the divs it looks like the current content scrolls down to reveal the new content.
The only idea I had so far was to put each item in an absolutely positioned div, and then just move all the divs down, and collapse the bottom one, with everything inside another div with clipping turned on.
I'm looking for some pointers or links that explain how to do the following. I have a web page with a list of stuff. Using AJAX, I want to add items to the top of the list, and then have the rest of the list scroll down smoothly so that the freshly added items scroll into view, as well as remove the bottom items.
I know how to do the ajax part of it, and I'm well versed in javascript, but I'm not sure how to massage the divs it looks like the current content scrolls down to reveal the new content.
The only idea I had so far was to put each item in an absolutely positioned div, and then just move all the divs down, and collapse the bottom one, with everything inside another div with clipping turned on.