Skip to content

Instantly share code, notes, and snippets.

@Dexterstat
Created April 17, 2014 09:26
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 Dexterstat/10968240 to your computer and use it in GitHub Desktop.
Save Dexterstat/10968240 to your computer and use it in GitHub Desktop.
reached button jquery javascript
$(document).ready(function() {
$(window).scroll(function() {
if ($('body').height() <= ($(window).height() + $(window).scrollTop())) {
alert('Bottom reached!');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment