Untitled

Anonymous
plain_text
01/28/2025 3:32 PM
528 B
8
Indexable
  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!');
      });
  });

Editor is loading...
Leave a Comment