Tengo este que igual no me funciona:
Código Javascript
:
Ver original$('#scroll-to-top').hide();
//Check to see if the window is top if not then display button
$(window).scroll(function () {
if ($(this).scrollTop() > 200) {
//$('#scroll-to-top').fadeIn();
$('#scroll-to-bottom').fadeOut();
} else {
//$('#scroll-to-top').fadeOut();
$('#scroll-to-bottom').fadeIn();
}
});
//Click event to scroll to top
$('#scroll-to-top').click(function () {
$('html, body').animate({ scrollTop: 0 }, 800);
return false;
});