Advertisement
divanov94

Untitled

Oct 2nd, 2020
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve() {
  2.     let siteCollection=document.querySelectorAll('.link-1');
  3.     Array.from(siteCollection).forEach(elem=>{
  4.         elem.addEventListener('click',(ev)=>{
  5.             let paragraph=elem.querySelector('p');
  6.             let counter=paragraph.textContent.split(" ")[1];
  7.             counter++;
  8.             paragraph.innerHTML=`visited ${counter} times`;
  9.         });
  10.     });
  11.  
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement