scroll to top
scroll to top
Hi all,
I got stuck at the moment with a scroll to top slider, It slides fine but when i click the scroll to top div it's stay on top and i can't scrll down
can someone help me out?
amorz
- var amorzScroll = null;
$(window).scroll(function () {
var scrollTop = $(document).scrollTop();
scrollTop = parseInt(scrollTop);
var offset = amorzScroll+scrollTop+"px";
$("#toplink").animate({top:offset},{duration:700,queue:false});
$('#toplink').click(
function (e) {
$('html, body').animate({scrollTop: '0px'}, 800);
}
);
});