Skip to content

Instantly share code, notes, and snippets.

@fmagrosoto
Created August 16, 2021 19:49
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 fmagrosoto/27d1123f63891575ec8ffb50f1312d26 to your computer and use it in GitHub Desktop.
Save fmagrosoto/27d1123f63891575ec8ffb50f1312d26 to your computer and use it in GitHub Desktop.
Detectar cuando se llega al final de una página
$(window).scroll(() => {
if ($(window).scrollTop() === ($(document).height() - $(window).height())) console.log('This is the end...')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment