Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created July 14, 2019 23:45
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/2843d80390563b812005680c95f33890 to your computer and use it in GitHub Desktop.
Save codingwithsara/2843d80390563b812005680c95f33890 to your computer and use it in GitHub Desktop.
jQuery ScrollTop-4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(function(){
$('#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