The Range.compareBoundaryPoints() method compares the boundary points of the Range with another one.
compare = range.compareBoundaryPoints(how, sourceRange);
-1, 0, or 1, indicating whether the corresponding boundary-point of the Range is respectively before, equal to, or after the corresponding boundary-point of sourceRange.Range.END_TO_END compares the end boundary-point of sourceRange to the end boundary-point of Range.Range.END_TO_START compares the end boundary-point of sourceRange to the start boundary-point of Range.Range.START_TO_END compares the start boundary-point of sourceRange to the end boundary-point of Range.Range.START_TO_START compares the start boundary-point of sourceRange to the start boundary-point of Range.If the value of the parameter is invalid, a DOMException with a NOT_SUPPORTED_ERR code is thrown.
Range to compare boundary points with the range.var range, sourceRange, compare;
range = document.createRange();
range.selectNode(document.getElementsByTagName("div")[0]);
sourceRange = document.createRange();
sourceRange.selectNode(document.getElementsByTagName("div")[1]);
compare = range.compareBoundaryPoints(Range.START_TO_END, sourceRange);
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Range.compareBoundaryPoints()' in that specification. | Living Standard | No change. |
| Document Object Model (DOM) Level 2 Traversal and Range Specification The definition of 'Range.compareBoundaryPoints()' in that specification. | Obsolete | Initial specification. |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | Yes | Yes | 4 | 9 | 9 | Yes |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | Yes | Yes | Yes | 4 | Yes | Yes | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Range/compareBoundaryPoints