Skip to content

Instantly share code, notes, and snippets.

@putzflorian
Created October 11, 2016 14:14
Show Gist options
  • Save putzflorian/a971bd73f596e45957bacb91ac9a89fe to your computer and use it in GitHub Desktop.
Save putzflorian/a971bd73f596e45957bacb91ac9a89fe to your computer and use it in GitHub Desktop.
scroll to reload
if(device.mobile()){
var nearToBottom = 2000;
} else {
var nearToBottom = 1000;
}
$(window).scroll(function () {
if ($(window).scrollTop() + $(window).height() > $(document).height() - nearToBottom) {
relaod();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment