The Range.endContainer
read-only property returns the Node
within which the Range
ends. To change the end position of a node, use the Range.setEnd()
method or a similar one.
The Range.endContainer
read-only property returns the Node
within which the Range
ends. To change the end position of a node, use the Range.setEnd()
method or a similar one.
A Node
object.
js
const range = document.createRange(); range.setStart(startNode, startOffset); range.setEnd(endNode, endOffset); endRangeNode = range.endContainer;
Specification |
---|
DOM Standard # ref-for-dom-range-endcontainer① |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
endContainer |
1 | 12 | 1 | 9 | 9 | 1 | 4.4 | 18 | 4 | 10.1 | 1 | 1.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Range/endContainer