Quantity and Add to cart #152709
Unanswered
Mj6078
asked this question in
Programming Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Body
document.addEventListener("DOMContentLoaded", () => {
document.querySelectorAll(".add-to-cart-form").forEach(form => {
form.addEventListener("submit", async (e) => {
e.preventDefault();
});
});
I working on the stencil cli in big commerce and I am trying to apply quantity box in the product card also In this, I have made GraphQL to fetch stock numbers, but I don't know how to solve this script. Please, can anyone help with this?
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions