eristoddle
9/27/2012 - 9:50 PM

Scroll to Top jQuery

Scroll to Top jQuery

(function($){
  $.fn.topButton = function(){
    return this.each(function(index){
      $(this).click(function(e){
        $('html, body').animate({scrollTop: 0}, 'slow'); 
      });
    });
  }
})(jQuery);