bobo_bobkata

Untitled

Oct 10th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. function create(words) {
  2. let content = document.getElementById("content");
  3.  
  4.  
  5. words.forEach(word => {
  6. let newDiv = document.createElement("div");
  7. let paragraph = document.createElement("p");
  8. paragraph.innerHTML = word;
  9. newDiv.addEventListener('click', function showText() {
  10. paragraph.style.display = "block";
  11. });
  12. paragraph.style.display = "none";
  13. newDiv.appendChild(paragraph);
  14. content.appendChild(newDiv);
  15. });
  16. console.log("ready");
  17.  
  18. }
Add Comment
Please, Sign In to add comment