W3cubDocs

/DOM

StaticRange.constructor

The StaticRange() constructor creates a new StaticRange object which provides attributes that track the start and end position of a range, and a boolean attribute indicating whether the current range is collapsed into a single position.

Syntax

var staticRange = new StaticRange(options)

Parameters

options
Options are as follows:
  • startContainer: The start Node for the range.
  • startOffset: The offset into the start node of the range's start position.
  • endContainer: The end Node for the range.
  • endOffset: The offset into the start node of the range's start position.

Specifications

Specification Status Comment
Static Range
The definition of 'StaticRange()' in that specification.
Editor's Draft Initial definition.

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 60 ? ? ? 47 ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 60 60 ? ? 47 ? ?

© 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/StaticRange/StaticRange