const addToCartForms = document.querySelectorAll(‘form[action=“/cart/add”]’);
addToCartForms.forEach((el) => {
el.addEventListener(‘click’, (e) => {
conole.log(‘clicked’)
e.preventDefault()
const qtyInput = el.querySelector(“.quantity__input”);
const eventqty = qtyInput ? qtyInput.value : 1;
console.log(“hello”,{{product|json}},eventqty)
sendGaEvent({{product|json}},eventqty,“add_to_cart”)
})
});