File Manager
Back to List
|
Up to Parent Directory
| Current Directory: ~/HL-Wellbeing/layout/scripts
Editing: HL-Wellbeing/layout/scripts/jquery.backtotop.js
Full path: C:\ict\ICT\HL-Wellbeing\layout\scripts\jquery.backtotop.js
Permissions: rwx
Write test: File appears not directly writable
Current process identity: IIS APPPOOL\DefaultAppPool
/* Template Name: Corklow Author: <a href="http://www.os-templates.com/">OS Templates</a> 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"); } });