Advertisement
Guest User

04. Sections

a guest
Feb 18th, 2018
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function create(words) {
  2.     for (let word of words) {
  3.         let div = document.createElement('div');
  4.         let paragraph = document.createElement('p');
  5.         paragraph.textContent = word;
  6.         paragraph.style.display = 'none';
  7.         div.appendChild(paragraph);
  8.         div.addEventListener('click', function() {
  9.             paragraph.style.display = 'block';
  10.         })
  11.  
  12.         let contentDiv = document.getElementById('content');
  13.         contentDiv.appendChild(div);
  14.     }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement