Get outerText value for a tag (Firefox does not support the outerText.) : outerText « DOM Node « JavaScript Tutorial






<html>
<head>
<title>OuterText Example</title>
<script type="text/javascript">
    function useOuterText() {
        var oDiv = document.getElementById("div1");
        alert(oDiv.outerText);
        oDiv.outerText = "new value";
        alert(document.getElementById("div1"));
    }
</script>

</head>
<body>
<div id="div1" >This is my original text</div>
<input type="button" value="Use OuterText" onclick="useOuterText()" />
</body>
</html>








23.17.outerText
23.17.1.Set outer Text (Firefox does not support the innerText property.)
23.17.2.Get outerText value for a tag (Firefox does not support the outerText.)