Skip to content

Instantly share code, notes, and snippets.

@peacefulseeker
Last active November 27, 2017 16:21
Show Gist options
  • Save peacefulseeker/2899517ea0018abb2a83aa5b56ff484f to your computer and use it in GitHub Desktop.
Save peacefulseeker/2899517ea0018abb2a83aa5b56ff484f to your computer and use it in GitHub Desktop.
jQuery - Infinite Scroll Down on dynamic ajax content loaded
/* Test here: http://www.meinpraktikum.de/praktikum/suchen?utf8=%E2%9C%93&q=&location=*/
(function( $ ) {
$(document).ajaxComplete(function(){
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
console.log($(".search-result-vacancies-box").length);
})
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment