Home | Top | Website design | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Sets the end position of a Range.
The setEnd method takes the following parameters:
endNode |
|
endOffset |
An integer greater than or equal to zero representing the offset for the end of the Range from the start of endNode. |
range = document.createRange(); endNode = document.getElementsByTagName("p").item(3); endOffset = document.getElementsByTagName("p").item(3).childNodes.length; range.setEnd(endNode,endOffset); |
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.
Home | Top | Website design | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |