Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created July 15, 2019 00:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/3e29045f27a271996bc9d656c03f0e0c to your computer and use it in GitHub Desktop.
Save codingwithsara/3e29045f27a271996bc9d656c03f0e0c to your computer and use it in GitHub Desktop.
jQuery ScrollTop-5
<script>
$(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 300) {
$('#scroll').fadeIn();
} else {
$('#scroll').fadeOut();
}
});
$('#scroll').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment