I am creating a blog on django/webfaction. My hompage currently displays 4 posts by default (posts are limited to 4 on queryset in urls.py). Now I woul
queryset
urls.py
You can try something like this..
var processScroll = true; $(window).scroll(function() { if (processScroll && $(window).scrollTop() > $(document).height() - $(window).height() - 100) { processScroll = false; // your functionality here processScroll = true; } });