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 want to add some functionality to my page when it is completely scrolled down. can any one tell is the any way to find whether the page is completely scrolled down using Jquery?

share|improve this question
Duplicate: stackoverflow.com/questions/2837741/… This should anwser it. – Connor Tumbleson Feb 1 '12 at 4:36

3 Answers

Try this.

$(window).scroll(function(){
   if(($(document).height() - $(document).scrollTop()) == $(window).height()){
       //Scroll reached at the bottom 
   }
});

Demo

share|improve this answer

jQuery Waypoints is the right tool for the job. There are several demos highlighting the event driven model that Waypoints utilizes.

share|improve this answer

for scroll mapping, u can use this;

$(window).scroll(function() {
   var scrollVal = $(this).scrollTop();
   //console.log(scrollVal);

   if ( scrollVal > 0 && scrollVal < 100 ){
     //code
   }else if ( scrollVal > 100 && scrollVal < 200 ) {
     //code
   }else{ //bigger than 200px
     //code
   }

});
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.