Skip to content

Instantly share code, notes, and snippets.

@arielsalminen
Created May 8, 2012 09:57
Show Gist options
  • Save arielsalminen/2633948 to your computer and use it in GitHub Desktop.
Save arielsalminen/2633948 to your computer and use it in GitHub Desktop.
Scroll back to top
jQuery(function () {
var $scrollEl = $("body,html"),
$backtoTop = $(".back_top");
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 600) {
$backtoTop.fadeIn();
} else {
$backtoTop.fadeOut();
}
});
$backtoTop.click(function (e) {
e.preventDefault();
$scrollEl.animate({
scrollTop: 0
}, 800);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment