jlittlejohn
12/13/2012 - 9:12 PM

JS: Scroll to Top

JS: Scroll to Top

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