DIR: /var/www/lapieza.do/assets/js/ |
Current File : /var/www/lapieza.do/assets/js/sticky-cart-bottom.js |
/**===================== Sticky Cart Bottom js ==========================**/ $(window).scroll(function () { var scroll = $(window).scrollTop(); var width_content = jQuery(window).width(); if (width_content > "300") { if (scroll >= 800) { $("body").addClass("stickyCart"); } else { $("body").removeClass("stickyCart"); } } }); |