Javascript DOM HTML UL remove <LI> element and add back

Description

Javascript DOM HTML UL remove <LI> element and add back

View in separate window

<!DOCTYPE html>
<html>
<body>

<ul id="myList">
  <li id="myLI">Coffee</li>
</ul>/*from  www  .  j a  v a 2  s. c  o m*/
<button onclick="removeLi()">Remove li</button>
<button onclick="appendLi()">Insert li</button>

<script>
var item = document.getElementById("myLI");

function removeLi() {
  item.parentNode.removeChild(item);
}

function appendLi() {
  var list = document.getElementById("myList");
  list.appendChild(item);
}
</script>

</body>
</html>



PreviousNext

Related