// source --> http://www.whitneyconstructionremodelers.com/wp-content/plugins/simple-back-to-top//js/sbtt.js?ver=4.7.5 // Simple Back To Top Scripts jQuery(document).ready(function() { jQuery("body").append('
'); jQuery(window).scroll(function() { if(jQuery(this).scrollTop()!=0) { jQuery("#sbttBacktotop").fadeIn() } else { jQuery("#sbttBacktotop").fadeOut() } }); jQuery("#sbttBacktotop").on('click touchstart',function(e) { e.preventDefault(); jQuery("body,html").animate({scrollTop:0},500); return false; }); });