Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Created September 29, 2017 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schalkburger/568f2f09bdd373b61e278af24b755aca to your computer and use it in GitHub Desktop.
Save schalkburger/568f2f09bdd373b61e278af24b755aca to your computer and use it in GitHub Desktop.
Output the Scroll Position on Console
$(window).scroll(example);
function example() {
var tempScrollTop = $(window).scrollTop();
console.log("Scroll from Top: " + tempScrollTop.toString());
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment