Skip to content

Instantly share code, notes, and snippets.

@jesse1981
Created May 7, 2013 23:44
Show Gist options
  • Save jesse1981/5537112 to your computer and use it in GitHub Desktop.
Save jesse1981/5537112 to your computer and use it in GitHub Desktop.
A method to invoke increasing pagination when window scroll gets to the bottom.
$(window).scroll(function(){
var $window = $(this);
if($window.scrollTop() == $(document).height() - $window.height()) $('#more').click()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment