Skip to content

Instantly share code, notes, and snippets.

@tdrach
Last active August 29, 2015 14:05
Show Gist options
  • Save tdrach/63e376787972c3eee1d8 to your computer and use it in GitHub Desktop.
Save tdrach/63e376787972c3eee1d8 to your computer and use it in GitHub Desktop.
var deviceHeight = $(window).height();
var scrollValue = 0;
$(window).scroll(function() {
scrollValue = $(window).scrollTop();
if(scrollValue > deviceHeight) {
console.log("Blow shit up");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment