Skip to content

Instantly share code, notes, and snippets.

@ahmadmilzam
Created July 24, 2016 01:11
Show Gist options
  • Save ahmadmilzam/5f2fb170fed41ba4b3aff0d50825bdbe to your computer and use it in GitHub Desktop.
Save ahmadmilzam/5f2fb170fed41ba4b3aff0d50825bdbe to your computer and use it in GitHub Desktop.
$(window).scroll(function() {
if ($(window).scrollTop() > 100) {
// > 100px from top - show div
}
else {
// <= 100px from top - hide div
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment