whoiskjl
10/20/2015 - 7:04 PM

Scroll to Top javascript with Jquery

Scroll to Top javascript with Jquery

/**
 * Scroll to Top
 */
  
  $(document).on('scroll',function() {
    if($(this).scrollTop()>420){
      $('body').addClass('scrolled');
    } else {
      $('body').removeClass('scrolled');
    }
  });

  $('.scroll-to-top').on('click',function(e) {
    e.preventDefault();
    $('html, body').animate({scrollTop : 0},500);
  });