Skip to content

Instantly share code, notes, and snippets.

@JakubOboza
Created March 29, 2012 22:03
Show Gist options
  • Save JakubOboza/2244199 to your computer and use it in GitHub Desktop.
Save JakubOboza/2244199 to your computer and use it in GitHub Desktop.
infinite scroll shit
$(window).scroll(function(){
if($(window).scrollTop() == $(document).height() - $(window).height()){
handler();
}
});
function handler(){
alert('Pong');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment