Scroll to top Slider

Scroll to top Slider

Hi all,

Im getting stuck on a scroll to top slider. It works fine only when i click the scroll to top button, it's stay on top of the page and i can't scroll down without refreshing the browser

Please help me

amorz

  1. var amorzScroll = null;



  2. $(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);
                }
            );
         });