Advertisement
Shell_Casing

code

Dec 3rd, 2018
786
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // those list items must show something when clicked
  2. let items = document.querySelectorAll('.items');
  3. items.forEach(item => {
  4.     item.addEventListener('click', alert(`${item.innerHTML}`));
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement