Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 7, 2013 20:24
Show Gist options
  • Save jlittlejohn/5535817 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5535817 to your computer and use it in GitHub Desktop.
JS: Back to Top
# back to top
$ ->
$(window).scroll ->
if $(this).scrollTop() > 100
$("#back-to-top").fadeIn()
else
$("#back-to-top").fadeOut()
# scroll body to 0px on click
$("#back-to-top").click ->
$("body,html").animate
scrollTop: 0
, 800
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment