JavaScript came about during a dark and lawless time, before the web standards movement, when all the major players in the browser world were—for want of a better term—winging it. It likely won’t come as a major surprise to anyone that Netscape and Microsoft implemented radically different versions of the DOM, with the prevailing sentiment being “may the best browser win.”
insertBefore()
The insertBefore() method, as you might guess, inserts an element before another element. It takes two arguments: the first is the node that gets inserted, and the second is the element it gets inserted in front of. You also need to know the parent to which the element will be added.
So, for example, to insert a new heading before the paragraph in this markup:
<div id="our-div"> <p id="our-paragraph">Our paragraph text</p> </div>
we start by assigning variable names to the div and the p it contains, then create the h1 element and its text node and put them together, just as we saw in the last example.
var ourDiv = document.getElementById("our-div"); var para = document.getElementById("our-paragraph"); var newHeading = document.createElement("h1"); var headingText = document.createTextNode("A new heading"); newHeading.appendChild( headingText ); // Add our new text node to the new heading
Finally, in the last statement shown here, the insertBefore() method places the newHeading h1 element before the para element inside ourDiv.
ourDiv.insertBefore( newHeading, para ); replaceChild()
The replaceChild() method replaces one node with another and takes two arguments. The first argument is the new child (i.e., the node you want to end up with). The second is the node that gets replaced by the first. Like insertBefore(), you also need to identify the parent element in which the swap happens. For the sake of simplicity, let’s say we start with the following markup:
<div id="our-div"> <div id="swap-me"></div> </div>
and we want to replace the div with the id “swap-me” with an image. We start by creating a new img element and setting the src attribute to the pathname to the image file. In the final statement, we use replaceChild() to put newImg in place of swapMe.
var ourDiv = document.getElementById("our-div"); var swapMe = document.getElementById("swap-me"); var newImg = document.createElement("img"); // Create a new image element newImg.setAttribute( "src", "path/to/image.jpg" ); // Give the new image a "src" attribute ourDiv.replaceChild( newImg, swapMe );
removeChild()
To paraphrase my mother, “We brought these elements into this world, and we can take them out again.” You remove a node or an entire branch from the document tree with the removeChild() method. The method takes one argument, which is the node you want to remove. Remember that the DOM thinks in terms of nodes, not just elements, so the child of an element may be the text (node) it contains, not just other elements.
Like appendChild, the removeChild method is always called on the parent element of the element to be removed (hence, “remove child”). That means we’ll need a reference to both the parent node and the node we’re looking to remove. Let’s assume the following markup pattern:
<div id="parent"> <div id="remove-me"> <p>Pssh, I never liked it here anyway.</p> </div> </div> Our script would look something like this: var parentDiv = document.getElementById("parent"); var removeMe = document.getElementById("remove-me"); parentDiv.removeChild( removeMe ); // Removes the div with the id "remove-me" from the page.
No comments yet (leave a comment)