The input box for the quantity should be reset to 0 after it has been added to the cart.

addToCartButton.click(function() {
    // Add item to cart
    // ...

    // Reset quantity input box to 0
    $(".input-qty").val(0);
});

Leave a comment

Your email address will not be published. Required fields are marked *