crazyyy
4/29/2014 - 11:11 PM

JS: slow scroll to top

JS: slow scroll to top

$("a[href='#top']").click(function() {
  $("html, body").animate({
    scrollTop: 0
  }, "slow");
  return false;
});