Skip to content

Instantly share code, notes, and snippets.

@ricardozea
Last active July 6, 2018 16:51
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 ricardozea/1e76562fbeb30f8b2619df80b2bc1f26 to your computer and use it in GitHub Desktop.
Save ricardozea/1e76562fbeb30f8b2619df80b2bc1f26 to your computer and use it in GitHub Desktop.
Just add this small script into your main JavaScript file.
//**SCROLL TO TOP
$("footer").append("<hr><a href='#' class='scroll-up'>Back to Top &uarr;</a>");
$(".scroll-up").on("click", function(e) {
e.preventDefault();
$("html, body").animate({ scrollTop: 0 }, 720); //the last value is the speed
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment