I'm making a pagination system (sort of like Facebook) where the content loads when the user scrolls to the bottom. I imagine the best way to do that is to find when the user is at the bottom of the page and run an ajax query to load more posts.
The only problem is I don't know how to check if the user has scrolled to the bottom of the page with jQuery. Any ideas?
tl;dr I need to find a way to check when the user has scrolled to the bottom of the page with jQuery. :)