File: /home/httpd/vhosts/rajlaw.com.tw/httpdocs/wp-content/themes/solargrove/assets/js/script.js
(function ($) {
$(document).ready(function(){
$("#sticky-header").sticky({topSpacing:0});
// Show scroll-to-top button when user scrolls down
$(window).scroll(function() {
if ($(this).scrollTop() > 100) {
$('.solargrove-scrool-top').fadeIn();
} else {
$('.solargrove-scrool-top').fadeOut();
}
});
// Scroll to top when button is clicked
$('.solargrove-scrool-top').click(function() {
$('html, body').animate({ scrollTop: 0 }, 'slow');
});
});
})(jQuery);