Skip to content

Instantly share code, notes, and snippets.

@mateusneves
Created June 23, 2016 19:14
Show Gist options
  • Save mateusneves/f41afc9664f6444c7197d95f445cc3f3 to your computer and use it in GitHub Desktop.
Save mateusneves/f41afc9664f6444c7197d95f445cc3f3 to your computer and use it in GitHub Desktop.
Detect scroll position
$(window).scroll(function (event) {
var scroll = $(window).scrollTop();
console.log( scroll );
if( scroll > 100 ){
// Run
}else{
// Run
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment