Mega Code Archive

 
Categories / JavaScript Tutorial / DOM Node
 

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>