Guest User

Untitled

a guest
Aug 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. (function(ul) {
  2. arr.forEach(function(text) {
  3. setupItem(ul.appendChild(document.createElement("li")), text);
  4. })
  5. })(document.appendChild(document.createElement("ul")));
  6.  
  7. function setupItem(li, text) {
  8. li.textContent = text;
  9. li.addEventListener("click", onClick, false);
  10. }
  11.  
  12. function onClick() {
  13. alert(this.textContent);
  14. }
Add Comment
Please, Sign In to add comment