Untitled
const buttons = document.querySelectorAll('.add'); buttons.forEach(button => { button.addEventListener('click', function() { alert('Item added to cart!'); }); }); const btn = document.querySelectorAll('.remove'); btn.forEach(button => { button.addEventListener('click', function() { alert('Remove from cart!'); }); });
Leave a Comment