/* * Author:Asiathemes * Created by: Asiathemes * Copyright (c) 2015 Businesso * Date: 15 Oct, 2015 * http://www.asiathemes.com/themes_preview/wp/businesso */ /*-- 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; }); });