Firefox Tomorrow

web api instance method

Range: intersectsNode() method

View on MDN ↗

The Range.intersectsNode() method returns a boolean indicating whether the given Node intersects the Range.

Syntax

intersectsNode(referenceNode)

Parameters

  • referenceNode

Return value

A boolean.

Examples

const range = document.createRange();

range.selectNode(document.getElementsByTagName("div").item(0));
const intersectingNode = range.intersectsNode(
  document.getElementsByTagName("p").item(0),
);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also