Skip to content

Instantly share code, notes, and snippets.

@JKring
Created May 15, 2013 23:25
Show Gist options
  • Save JKring/5588237 to your computer and use it in GitHub Desktop.
Save JKring/5588237 to your computer and use it in GitHub Desktop.
fun scrolly time
var BUFFER = $(window).height() - $("#box").height();
$(window).scroll(function(){
$(window).scrollTop() > BUFFER ? $("#box").hide() : $("#box").show();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment