DOM Node JavaScript Tutorial

< html>

OuterText Example

function useOuterText() {
    var oDiv = document.getElementById("div1");
        oDiv.outerText = "This is some new text not inside a DIV.";
    }



This is my original DIV