/*-- page scroll to top section ---------------*/ jquery(document).ready(function () { jquery(window).scroll(function () { if (jquery(this).scrolltop() > 100) { jquery('.hc_scrollup').fadein(); } else { jquery('.hc_scrollup').fadeout(); } }); jquery('.hc_scrollup').click(function () { jquery("html, body").animate({ scrolltop: 0 }, 600); return false; }); });