This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The Range.isPointInRange() method returns a boolean indicating whether the given point is in the Range. It returns true if the point (cursor position) at offset within ReferenceNode is within this range.
Syntax
bool = range.isPointInRange( referenceNode, offset )
Parameters
- referenceNode
- The
Nodeto compare with theRange. - offset
- The offset into
Nodeof the point to compare with theRange.
Example
range = document.createRange();
range.selectNode(document.getElementsByTagName("div").item(0));
bool = range.isPointInRange(document.getElementsByTagName("p").item(0),1);
Specification
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Range.isPointInRange()' in that specification. |
Living Standard | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
isPointInRange | Chrome Full support Yes | Edge Full support 15 | Firefox Full support Yes | IE No support No | Opera Full support 15 | Safari Full support Yes | WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android Full support Yes | Opera Android Full support 14 | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
