Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to set up infinite-scroll on a site I am developing with Coldfusion, I am new to javascript and jquery so I am having some issues wrapping my head around all of this. Do I need to have pagination on my site in order to use the infinite-scroll plugin, or is there a way to do it with out it?

share|improve this question
@francis what do you mean by costly. You don't have to bind everything to the scroll. It depends of what want to do. This is a generic example. scroll is cross browser supported. – Hussein Feb 27 '12 at 2:34

2 Answers

up vote 50 down vote accepted

You do not need infinite scroll plug-in for this. To detect when scroll reaches end of page, with jQuery you can do

$(window).scroll(function () { 
   if ($(window).scrollTop() >= $(document).height() - $(window).height() - 10) {
      //Add something at the end of the page
   }
});
share|improve this answer
2  
Exactly why the -10 constant? Is it the size of the arrows in scrollbar? – BrunoSalvino Apr 29 '11 at 18:21
3  
@bruno Scroll happens when it's reaches 10px before end of page and not necessary the very end of the page. It's not necessary to have it, but it gives greater control to define at what point page should scroll. – Hussein Apr 29 '11 at 19:04
Thank you for this! – ONDEV Oct 4 '11 at 20:59
2  
Is it possible to adopt it to fixed DIV instead of page? – Vlad Shyshov Oct 20 '12 at 23:48
@Hussein thanks this is simple and nice , I can simply call my ajax on the above code – kobe Mar 13 at 5:16

I built on top of Hussein's little example here to make a jQuery widget. It supports localStorage to temporarily save appended results and it has pause functionality to stop the appending every so often, requiring a click to continue.

Give it a try:

http://www.hawkee.com/snippet/9445/

share|improve this answer

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.