Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Returns a new Range object.

Syntax

range = document.createRange();

range is the created Range object.

Example

var range = document.createRange();

range.setStart(startNode, startOffset);
range.setEnd(endNode, endOffset);

Notes

Once a Range is created, you need to set its boundary points before you can make use of most of its methods.

Specification

Document Tags and Contributors

 Last updated by: teoli,