createTextRange method

0 out of 3 rated this helpful - Rate this topic

Creates a TextRange object for the element.

Syntax

object.createTextRange()

Parameters

This method has no parameters.

Return value

Type: TextRange

Returns  a TextRange object if successful, or null otherwise.

Standards information

There are no standards that apply here.

Remarks

Use a text range to examine and modify the text within an object.

Examples

This example uses the createTextRange method to create a text range for the document, and then uses the text range to display all the text and HTML tags in the document.


<SCRIPT LANGUAGE="JavaScript">
var rng = document.body.createTextRange( );
if (rng!=null) {
    console.log(rng.htmlText);
}
</SCRIPT>

This example uses the createTextRange method to create a text range for the first button element in the document, and then uses the text range to change the text in the button.


<SCRIPT LANGUAGE="JavaScript">
var coll = document.all.tags("BUTTON");
if (coll!=null && coll.length>0) {
    var rng = coll[0].createTextRange();
    rng.text = "Clicked";
}
</SCRIPT>

See also

body
button
input type=button
input type=hidden
input type=password
input type=reset
input type=submit
input type=text
textArea

 

 

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.