Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to ask you the concept of facebook auto refresh.

Last time I using jquery and some js function in my page to get auto update. This work smoothly, if data receive it will automatically update the page and the data will show.

But now I have a trouble when I want to block text the content of auto update. Trouble is when want to block text and copy the content, we must quickly block it. If not, it will refresh again and reset your block text.

I just imagine is it possible if I want to make auto refresh like facebook concept. In facebook, I see it smoothly.
In facebook concept, I block text of content, if auto refresh, It keep the block of text.

So how can I do that concept in my page ? Thank you.

share|improve this question
1  
All you need to do is use jQuery's .prepend() method when adding the new content into your block. It will place it on top, and will not replace any existing content. – Ohgodwhy Aug 15 '12 at 3:05

1 Answer

I think you can store your text into a "queue" (maybe an array in js) And then display the content from your "queue"

Thus, you don't worry about the content will be reset.

example:

var queue =[];

function getfromserver(){
    $.get("url",null,function(resp){
           queue = queue.concat( resp );
    }, "json");
}

function displayTopFive(){
    // do block text
    var topfive = queue.slice(0,5); // if the length of queue is more than 5
    $.map(topfive, function(elem){
            //do display single block
    });
}
share|improve this answer
Have an example ? – X-men Aug 15 '12 at 3:04
Yes. Here you are. – Shih-En Chou Aug 15 '12 at 3:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.