Last active
February 8, 2019 13:48
-
-
Save valterbarros/971d356102bdeac2609e8aa3bcdfe564 to your computer and use it in GitHub Desktop.
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.onscroll = function(ev) { | |
if ((document.defaultView.innerHeight + document.defaultView.scrollY) == document.body.scrollHeight) { | |
$('.item.number.active').next('.item').find('a').get(0).click() | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment