Just get the HTML and prepend it.

$.get("last-10-twitts.php", function(data) {
     $("#twitts").prepend(data);
});


On Mar 24, 5:11 am, introvert <aljaz.faj...@gmail.com> wrote:
> Hello.
>
> I have a simple twitter shoutbox on my website that I would like to
> refresh with jquery each X seconds.
>
> At the moment I use the following code which will hide the block, load
> new and show it:
>
> function getTweets() {
> $("#twitts").fadeOut("fast");
> $("#twitts").load("last-10-twitts.php", '', callback);
>
> }
>
> function callback() {
> $("#twitts").fadeIn("fast");
> setTimeout("getTweets();", 15000);
>
> }
>
> $(document).ready(getTweets);
>
> I'm looking for more advanced method that will only add new items at
> the beginning of the list.
> How is it possible to implement that?
>
> Is there any tutorial/example online?
>
> Many thanks in advance.

Reply via email to