web api instance method
Selection: removeRange() method
The Selection.removeRange() method removes a range from a
selection.
Syntax
removeRange(range)
Parameters
range- : A range object that will be removed from the selection.
Return value
None (undefined).
Examples
/* Programmatically, more than one range can be selected.
* This will remove all ranges except the first. */
const s = window.getSelection();
if (s.rangeCount > 1) {
for (let i = 1; i < s.rangeCount; i++) {
s.removeRange(s.getRangeAt(i));
}
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
Selection, the interface it belongs to.