Skip to content

Instantly share code, notes, and snippets.

View clain4u's full-sized avatar

Clain Dsilva clain4u

  • King's lynn, United Kingdom
  • X @clain4u
View GitHub Profile
@knorthfield
knorthfield / scrollBottom.js
Created May 10, 2012 14:56
jQuery detect if scrolled to bottom or near it
$(window).scroll(function(){
toScroll = $(document).height() - $(window).height() - 250;
if ( $(this).scrollTop() > toScroll ) {
// Do something
}
});