jQuery(document).ready(function(){
if (jQuery('.pagination a.next_page').size() > 0) {
jQuery(window).on('scroll', function() {
more_url = jQuery('.pagination a.next_page').attr('href');
if (more_url && window.stop_scroll != true && (jQuery(window).scrollTop() + jQuery(window).height()) >= jQuery(document).height() - 300 ) {
window.stop_scroll = true;
jQuery(".scroll-spinner").show();
jQuery.getScript(more_url);
};
});
};
});