Development JavaScript DHTML

 
 
A Simple Page

function modify() {
    var newElem = document.createElement("P")
    newElem.id = "newP"
    var newText = document.createTextNode("This is the second paragraph.")
    newElem.appendChild(newText)
    document.body.appendChild(newElem)
    document.getElementById("emphasis1").childNodes[0].nodeValue = "first "
}

 
 
Add/Replace Text
This is the one and only paragraph on the page.