Skip to content

Instantly share code, notes, and snippets.

@daksamedia
Created April 7, 2020 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daksamedia/a9b9a6b362b2dc1fae1c7f5e1a450a52 to your computer and use it in GitHub Desktop.
Save daksamedia/a9b9a6b362b2dc1fae1c7f5e1a450a52 to your computer and use it in GitHub Desktop.
window.onscroll = function(ev) {
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
alert("you're at the bottom of the page");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment