Last active
August 29, 2015 14:19
-
-
Save carmichaelize/7b702eb8b93b147f5de7 to your computer and use it in GitHub Desktop.
Know when you reached the bottom of the window
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
var scroll = function(){ | |
if ($(window).scrollTop() + $(window).height() > $(document).height() - 50) { | |
//Do something | |
} | |
} | |
//Add/remove function from $(window) | |
$(window).on('scroll', scroll); | |
$(window).off('scroll', scroll); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment