Modifying the DOM tree

Appending a node to a parent

      document.body.appendChild(div);
    

Inserting a node at a particular spot

      var myImg = new Image();
      document.body.insertBefore(myImg, div);
    

Removing a node

      div.parentNode.removeChild(div);