JavaScript Reference/Javascript Properties/text TextRange
"text" Example
<html>
<body>
<script language="javascript">
function function1(){
textRange = document.body.createTextRange();
textRange.text = "This is a test";
}
</script>
<button onclick="function1();">See Text in TextRange</button>
</body>
</html>
"text" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |TextRange |
+----------------+--------------------------------------------------------------+
"text" Syntax and Note
Note:
Read and write property.
Sets the text string in the textRange object.
Syntax:
textRangeName.text = value