Created
May 14, 2015 05:20
-
-
Save khoand0000/e8ad0edbd68c01e8cb46 to your computer and use it in GitHub Desktop.
Infinity scrolling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).scroll(function(){ | |
// maybe include - $('#footer').outerHeight(true) <-- height with margin | |
if ($(window).scrollTop() >= $(document).height() - $(window).height()) { | |
// do something, load more products, etc | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment