up vote 7 down vote favorite
7
share [g+] share [fb]

When you search for images on the Bing search engine, the result is displayed like this:

http://www.bing.com/images/search?q=stack+overflow

Notice how you can keep scrolling and scrolling and there is not "normal" paging.

My question is: How do they do this? I can see there is some ajax/javascript events happening, but the code is not easy to read. I especially would like to know how they know when an "empty box" is inside the users view port.

link|improve this question

79% accept rate
feedback

5 Answers

up vote 1 down vote accepted

Here's an article about that technology :

Eliminate paging results by using JavaScript (ala DZone) : Using Javascript, prototype and PHP.

link|improve this answer
feedback

After some searching and reading I found this very good site:

http://www.infinite-scroll.com/

It includes downloadable WordPress and jQuery -plugins and also explains pros/cons of using "Infinite scroll/autopagerize/unpaginate/endless pages"

Sample pseudo/jQuery code to load more data when user has scrolled all the way to the bottom:

$(window).scroll(function(){
        if  ($(window).scrollTop() == $(document).height() - $(window).height()){
           loadMoreRows();
        }
});
link|improve this answer
feedback

This feature is often called "infinite scrolling". Searching for infinite scroll javascript turns up a number of articles/posts on how to do this. Some of the more interesting ones:

link|improve this answer
feedback

Today I found a jQuery plugin that does the same scroll as Bing/Live Search:

http://blog.yctin.com/archives/jquery-plugins-ajaxscroll/

It was designed to remove the need for Next/Previous buttons.

link|improve this answer
feedback

Scott Hanselman has a nice blog post about this: Infinite Scrolling

link|improve this answer
Might as well mention, if you want to see a couple of demos of infinite scrolling pushed to the limits... 1) If you have Silverlight installed, check out this Netflix online catalog demo snurl.com/netflixdemo and if you have WPF 3.5 installed, 2) xceed.com/bingbling – Odi - Xceed Aug 11 '10 at 1:12
feedback

Your Answer

 
or
required, but never shown

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