Refresh the cart after updating cart item

Automatically refresh the cart after updating a cart item.

add_action('woocommerce_before_cart', function (){
      ?>
      <script type="text/javascript">
        jQuery( document.body ).on( 'updated_cart_totals', function() {
		location.reload();
	}); 
      </script>
      <?php
});