Answers for "javascript append li"

0

append li to ul javascript

function function1() {
  var ul = document.getElementById("list");
  var li = document.createElement("li");
  li.appendChild(document.createTextNode("Four"));
  ul.appendChild(li);
}
Posted by: Guest on September-30-2020
1

add a child html object to another html object in js

//Add child at end of object children list
parent.append(child);
//Add child at start of object children list
parent.insertBefore(child, list.childNodes[0]);
Posted by: Guest on October-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language