A range object that will be added to the selection.
A range object that will be added to the selection.
MDN
Returns the node in which the selection begins.
Returns the node in which the selection begins.
MDN
Returns a number representing the offset of the selection's anchor within the anchorNode.
Returns a number representing the offset of the selection's anchor within the anchorNode. If anchorNode is a text node, this is the number of characters within anchorNode preceding the anchor. If anchorNode is an element, this is the number of child nodes of the anchorNode preceding the anchor.
MDN
Collapses the current selection to a single point.
Collapses the current selection to a single point. The document is not modified. If the content is focused and editable, the caret will blink there.
MDN
Collapses the selection to the end of the last range in the selection. If the content the selection is in is focused and editable, the caret will blink there.
Collapses the selection to the end of the last range in the selection. If the content the selection is in is focused and editable, the caret will blink there.
MDN
Collapses the selection to the start of the first range in the selection. If the content of the selection is focused and editable, the caret will blink there.
Collapses the selection to the start of the first range in the selection. If the content of the selection is focused and editable, the caret will blink there.
MDN
Deletes the actual text being represented by a selection object from the document's DOM.
Deletes the actual text being represented by a selection object from the document's DOM.
MDN
Returns the node in which the selection ends.
Returns the node in which the selection ends.
MDN
Returns a number representing the offset of the selection's anchor within the focusNode.
Returns a number representing the offset of the selection's anchor within the focusNode. If focusNode is a text node, this is the number of characters within focusNode preceding the focus. If focusNode is an element, this is the number of child nodes of the focusNode preceding the focus.
MDN
Returns a range object representing one of the ranges currently selected.
Returns a range object representing one of the ranges currently selected.
MDN
Returns a boolean indicating whether the selection's start and end points are at the same position.
Returns a boolean indicating whether the selection's start and end points are at the same position.
MDN
Returns the number of ranges in the selection.
Returns the number of ranges in the selection.
MDN
Removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and leaving nothing selected.
Removes all ranges from the selection, leaving the anchorNode and focusNode properties equal to null and leaving nothing selected.
MDN
Removes a range from the selection.
Removes a range from the selection.
MDN
Adds all the children of the specified node to the selection.
Adds all the children of the specified node to the selection. Previous selection is lost.
MDN
Selection is the class of the object returned by window.getSelection() and other methods. It represents the text selection in the greater page, possibly spanning multiple elements, when the user drags over static text and other parts of the page. For information about text selection in an individual text editing element, see Input, TextArea and document.activeElement which typically return the parent object returned from window.getSelection().
MDN