Home › Forums › WoodMart support forum › Autoscroll down on open cart widget › Reply To: Autoscroll down on open cart widget
December 2, 2020 at 10:33 am
#246909
azaria
Participant
I’ve seen in your functions.js that when you add to cart it triggers the click of the “.cart-widget-opener a” element. You can’t add any action to this .cart-widget-opener a to scroll .shopping-cart-widget-body?
I tested this and doesn’t works:
jQuery(‘.cart-widget-opener’).on(‘click’, ‘a’, function(){
$(‘html,body’).animate({scrollTop: shopping-cart-widget-body.offset().bottom});
});
Thanks in advance,