Guest User

Untitled

a guest
Feb 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function manipulate_04() {
  2. // DOM Manipulation_04:
  3. // Insert li in the DOM and specifically before
  4. // li in the first position
  5. var btn04 = document.getElementById("btn04");
  6. // create a new li element
  7. var newLi = document.createElement("li");
  8. var list = document.getElementById("ourList");
  9. // create text to display at li
  10. newLi.innerHTML = "This is Line 1";
  11. // insert li in the first position
  12. list.insertBefore(newLi, list.getElementsByTagName("li")[0]);
  13. btn04.classList.add("hide-btn");
  14. }
Add Comment
Please, Sign In to add comment