Hey everyone,
I have a list of search results in a <div>
element with a static height and overflow: auto;
in the style. I would like to load only the first x number of search results (e.g. 20), and load another x results as the user scrolls to the bottom of the element containing the search results.
Can anyone explain to me how I would do this? I found a few examples, but all of those use the scroll value of the entire document, not a single <div>
. I am using jQuery, if it matters.