While I've never actually implemented the behavior described above, I did happen to do a bit of Google'ing (more on that below).
jrahma;11040483 wrote:I want to know how to paginate like linkedin and facebook so it will list more rows when the user scrolls down?
The great thing about client-side scripting is... it's client-side. 🙂 In other words, if you want to know how a particular website did something... just go to that website and take a gander at the source code. Any modern browser (Chrome is my weapon of choice) will have a DOM inspector and hopefully other useful tools such as a Javascript debugger (complete with breakpoints, watch expressions, etc.).
jrahma;11040483 wrote:also, What do you call this type of pagination?
I suspect I'd still just call it "pagination." That's all it is, in the end; you're navigating through small chunks of an entire result set. The only difference is how you do the navigation; rather than a "Next" button and/or a hyperlinked list of pages, it's the user's scrolling to a certain point on the page that triggers the same action as clicking a "Next" button.
The brief bit of Google'ing I did turned up two possible methods to achieve this scrolling behavior:
Something akin to jQuery Waypoints
Using your own custom "onscroll" event to estimate when the scrolled position is near the "bottom" of the page (seemed error-prone and/or harder to make cross-platform compatible).