Skip to content

Instantly share code, notes, and snippets.

@lmchawla
Last active June 13, 2018 07:08
Show Gist options
  • Save lmchawla/ffe32635bd2cd5f2f6e089f758465793 to your computer and use it in GitHub Desktop.
Save lmchawla/ffe32635bd2cd5f2f6e089f758465793 to your computer and use it in GitHub Desktop.
infinitely scrolls
function show_more()
{
//if(!load)return;
var scroll = $(window).scrollTop();
$("body, html").animate({
scrollTop: $(document).height()
}, 0);
}
function fetch_more(){
// len=$('.browse_startups_table_row').length;
//if(len<10)
show_more();
}
window.setInterval(fetch_more,1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment