EVOLUTION-NINJA
Edit File: scrolltotop_jq.min.js
/** * @copyright Copyright (c) 2013 Skyline Software (http://extstore.com). All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ (function($){$.fn.SLScrollToTop=function(a){var b={'id':'scrollToTop','className':'scrollToTop','image':'','text':'^ Scroll to Top','title':'Scroll to Top','duration':500};var a=$.extend(b,a);var c=$('<div />',{'id':a.id,'html':a.text,'title':a.title,'class':a.className}).appendTo('body').hide();if(a.image!=''){$('<img src="'+a.image+'" alt="'+a.title+'" />').prependTo(c)}$(window).scroll(function(){$this=$(this);if($this.scrollTop()!=0){c.fadeIn()}else{c.fadeOut()}});c.click(function(){$('body,html').animate({scrollTop:0},a.duration)})}})(jQuery);