Skip to content

Instantly share code, notes, and snippets.

@czj
Created June 10, 2012 20:21
Show Gist options
  • Save czj/2907205 to your computer and use it in GitHub Desktop.
Save czj/2907205 to your computer and use it in GitHub Desktop.
//scroll to top
function scrollToTop(){
$('.goTop').hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.goTop').fadeIn();
} else {
$('.goTop').fadeOut();
}
});
// scroll body to 0px on click
$('.goTop').click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment