Skip to content

Instantly share code, notes, and snippets.

@asjustas
Created November 16, 2012 08:47
Show Gist options
  • Save asjustas/4085574 to your computer and use it in GitHub Desktop.
Save asjustas/4085574 to your computer and use it in GitHub Desktop.
scrool to top visible
var isVisible = false;
$(window).scroll(function(){
var shouldBeVisible = $(window).scrollTop()>200;
if (shouldBeVisible && !isVisible) {
isVisible = true;
$('#mybutton').show();
} else if (isVisible && !shouldBeVisible) {
isVisible = false;
$('#mybutton').hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment