The Range.compareBoundaryPoints() method compares the boundary points of the Range with another one.
Syntax
compare = range.compareBoundaryPoints(how, sourceRange);
Return value
- compare
- A number, -1,0, or1, indicating whether the corresponding boundary-point of theRangeis respectively before, equal to, or after the corresponding boundary-point of sourceRange.
Parameters
- how
- A constant describing the comparison method:
 - Range.END_TO_ENDcompares the end boundary-point of sourceRange to the end boundary-point of- Range.
- Range.END_TO_STARTcompares the end boundary-point of sourceRange to the start boundary-point of- Range.
- Range.START_TO_ENDcompares the start boundary-point of sourceRange to the end boundary-point of- Range.
- Range.START_TO_STARTcompares the start boundary-point of sourceRange to the start boundary-point of- Range.
 If the value of the parameter is invalid, a DOMExceptionwith aNOT_SUPPORTED_ERRcode is thrown.
- sourceRange
- A Rangeto compare boundary points with the range.
Example
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);
Specifications
| 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. | Recommendation | Initial specification. | 
Browser compatibility
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari | 
|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | 1.0 (1.7 or earlier) [1] | 9.0 | 9.0 | (Yes) | 
| Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | 
|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | 1.0 (1.0) [1] | 9.0 | 9.0 | (Yes) | 
[1] Before Firefox 17, when facing an invalid value for the comparison method, an erroneous non-standard NS_ERROR_ILLEGAL_VALUE exception was raised.
See also
Document Tags and Contributors
    
    Tags: 
    
  
                    
                       Contributors to this page: 
        abbycar, 
        ttencate, 
        teoli, 
        fscholz, 
        Prome, 
        shubham.hatwar, 
        Sheppy, 
        Emmanuel81, 
        Solidarity, 
        Shoot, 
        Nickolay, 
        Bono8106, 
        Gor1
                    
                    
                       Last updated by:
                      abbycar,