Created
November 16, 2012 08:47
-
-
Save asjustas/4085574 to your computer and use it in GitHub Desktop.
scrool to top visible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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