Magento2 Add to Cart – Scroll to Top After Adding Product to Cart

addtocartmagento2product-page

I'd like the user to be scrolled to the top of the product page upon successfully adding a product to their cart, so that they can see the success message.

What would be the best way to accomplish this?

Best Answer

Try this code in your custom js

require(['jquery'],function($){
    $('[data-block="minicart"]').on('contentLoading', function (event) {    
        $('[data-block="minicart"]').on('contentUpdated', function ()  {
            $('html, body').animate({scrollTop:0}, 'slow');
        });
    });
});