var weatherObj = document.getElementById("sectnav"); var weatherAnchor = weatherObj.getElementsByTagName("A")[0]; var oldText = weatherAnchor.childNodes[0];var imgW = document.createElement("IMG"); // Creating new img imgW.src = 'http://www.web.appstate.edu/images/weather/night.gif'; var newText = document.createTextNode(" 36 F (2 C)"); weatherAnchor.removeChild(oldText); weatherAnchor.appendChild(imgW); // Appending to the anchor weatherAnchor.appendChild(newText);