OwlCyberSecurity - MANAGER
Edit File: catchkathmandu-scrollup.js
jQuery(document).ready(function(){ jQuery("#scrollup").hide(); jQuery(function () { jQuery(window).on( 'scroll',function () { if (jQuery(this).scrollTop() > 100) { jQuery( '#scrollup' ).fadeIn('slow'); jQuery( '#scrollup' ).show(); } else { jQuery('#scrollup').fadeOut('slow'); jQuery("#scrollup").hide(); } }); jQuery('#scrollup').on( 'click',function () { jQuery('body,html').animate({ scrollTop: 0 }, 500); return false; }); }); });