setEnd
Sets the end position of a Range.
Syntax
Parameters
The setEnd method takes the following parameters:
endNode endOffsetAn integer greater than or equal to zero representing the offset for the end of the Range from the start of endNode.
Example
range = document.createRange(); endNode = document.getElementsByTagName("p").item(3); endOffset = document.getElementsByTagName("p").item(3).childNodes.length; range.setEnd(endNode,endOffset);
Notes
If the endNode is a Node of type Text, Comment, or CDATASection, then endOffset is the number of characters from the start of endNode. For other Node types, endOffset is the number of child nodes between the start of the endNode.
Specification:
Netscape Communications http://developer.netscape.com |