Set outer Text (Firefox does not support the innerText property.) : outerText : DOM Node JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » DOM Node » outerText »

 

Set outer Text (Firefox does not support the innerText property.)

















<html>
<head>
<title>OuterText Example</title>
<script type="text/javascript">
function useOuterText() {
    var oDiv = document.getElementById("div1");
        oDiv.outerText = "This is some new text not inside a DIV.";
    }
</script>
</head>
<body>
<div id="div1">This is my original DIV</div>
<input type="button" value="Use OuterText" onclick="useOuterText()" />
</body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo DOM Node
» outerText