views:

18

answers:

1

Hi Guys,

Looking for something written in jQuery which allows polling or a plugin which would allow data updates similar to this website.

Anyone got any ideas of something like this in jQuery ? Or how to write something ?

A: 

You can prepend the div first with display none using preepend() function. And then for the slide animation use $("#div-1").slideToggle("slow");

For update your list you can set an ajax function to check periodically with setInterval() javascript function and call prepend function with the new line.

Keyne