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'm trying to implement infinite scrolling on my page, how ever something has messed up, instead of triggering at the bottom of the page it's triggering when I scroll back to the top. Does anyone know what could be triggering this?

$(window).scroll(function()
{
    if($(window).scrollTop() == $(document).height() - $(window).height())
    {
        alert("hello");
    }
});

I'm currently using the code above, which works in jsfiddle just fine. I also tried an alternative of -

if($(window).scrollTop() + $(window).height() == $(document).height())

Note: I'm using CodeIgniter (although im not sure this would cause the problem?)

If you'd like to take a look at what I mean you can check out the test page at http://carllawl.kwebserv.info/recent (just scroll down then back up to see what I mean)

share|improve this question
Can you try adding this to your script then let us know what it says. chk_val=$(document).height() - $(window).height(); console.log("chk_val=",chk_val); – moomoochoo Aug 22 '12 at 13:24
You will need firebug to see the result if you are using firefox. – moomoochoo Aug 22 '12 at 13:26
(Using chrome) it always returns - chk_val= 0 – user1522379 Aug 22 '12 at 19:28
doesn't work in iOS :( – RyanM Dec 12 '12 at 18:46

2 Answers

This code worked perfectly well when I pasted it in firebug console and the test page is not loading at the moment.

share|improve this answer
Yeah I thought it was ok, not sure why the test page isn't loading it seems ok to me and a few friends. Thanks for confirming it's not my code! – user1522379 Aug 22 '12 at 13:15

USE THIS

  $(window).scroll(function() {
    if ($(window).scrollTop() <= $(document).height() - $(window).height() && $(window).scrollTop() >= $(document).height() - $(window).height() - 10) {
    yourfunctionhere()
  }
 });
share|improve this answer
Thanks for the reply, I tried your code to which I received the same result as above! – user1522379 Aug 22 '12 at 13:18

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.