jQuery(document).ready(function(jQuery) { "use strict"; // jQuery('body').removeClass('be-loading-now'); // jQuery('#primary-menu').slicknav({ // appendTo : '.site-branding', // label : '', // allowParentLinks: true // }); // Open Comments Form on button click jQuery(".comment-respond#respond").slideUp('fast'); jQuery(".be-open-comment-form").on('click', function(e){ e.preventDefault(); jQuery(".comment-respond#respond").slideToggle(); }); // For Fixed header & Scroll to top jQuery(window).on("scroll resize", function() { if (jQuery(window).scrollTop() >= 500) { jQuery(".be-goto-top").css("bottom", "10px"); } if (jQuery(window).scrollTop() < 500) { jQuery(".be-goto-top").css("bottom", "-50px"); } }); // For Scroll to top jQuery(".be-goto-top").on("click", function() { return jQuery("html, body").animate({ scrollTop: 0 }); }); });