ErolKZ

Untitled

Feb 2nd, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1.  
  2. function solve() {
  3.  
  4. let textArea = document.getElementsByTagName('textarea')[0].value;
  5.  
  6. let addButtons = document.getElementsByClassName('product');
  7.  
  8. addButtons = Array.from(addButtons);
  9.  
  10. addButtons.forEach(el => {
  11.  
  12. el.addEventListener('click', (e) => {
  13.  
  14. console.log(e.currentTarget);
  15.  
  16. textArea += "Added {name} for {money} to the cart.\n";
  17.  
  18. });
  19.  
  20. });
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment