Last active
December 29, 2015 08:49
-
-
Save eljamez/7645677 to your computer and use it in GitHub Desktop.
Just a quick snip that returns the scroll position of the page.
This file contains 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
# start at the top | |
scroll_top = 0 | |
# on the scroll | |
$(@).scroll () => | |
scroll_top = $(@).scrollTop() | |
# log it | |
console.log scroll_top |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment