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