1
I have to update the main cart on change of quantity by Ajax without click on "Update Cart Button" and without reloading the page. By following code m able to update cart table but m not getting a solution to update "Cart Summary" block. <script> require(['jquery', 'Magento_Customer/js/customer-data', 'jquery/jquery-storageapi'], function ($) { // $("#submitbutton").hide(); var form = $('form#form-validate'); var qtyfields = $('input.qty'); $('.page.messages').each(function () { var thismessage = $(this); thismessage.attr('id', 'messages'); }); form.find(qtyfields).each(function (e) { var thisfield = $(this); $(this).change(function () { ...