guesthouse_lite-8.x-1.0/js/custom/to-top.js
js/custom/to-top.js
jQuery(document).ready(function($) {
$(window).scroll(function() {
if($(this).scrollTop() != 0) {
$(".to-top").addClass("show");
} else {
$(".to-top").removeClass("show");
}
});
$(".to-top").click(function() {
$("body,html").animate({scrollTop:0},800);
});
});
