/* Template Name: Viral Author: OS Templates Author URI: http://www.os-templates.com/ Licence: Free to use under our free template licence terms Licence URI: http://www.os-templates.com/template-terms File: Back to Top JS */ jQuery("#backtotop").click(function () { jQuery("body,html").animate({ scrollTop: 0 }, 600); }); jQuery(window).scroll(function () { if (jQuery(window).scrollTop() > 150) { jQuery("#backtotop").addClass("visible"); } else { jQuery("#backtotop").removeClass("visible"); } });