Articles tagged: Selection
Found 23 documents
- Web/API/Document/getSelection This method functions identically to the Window.getSelection() method; it returns a Selection ...
- Web/API/Selection Calling the Selection.toString() method returns the text contained in the selection, e.g.:
- Web/API/Selection/addRange The Selection.addRange() method adds a Range to a Selection.
- Web/API/Selection/anchorNode The Selection.anchorNode read-only property returns the Node in which the selection begins.
- Web/API/Selection/anchorOffset The Selection.anchorOffset read-only property returns the number of characters that the ...
- Web/API/Selection/collapse The Selection.collapse() method collapses the current selection to a single point. The document ...
- Web/API/Selection/collapseToEnd The Selection.collapseToEnd() method collapses the selection to the end of the last range in the ...
- Web/API/Selection/collapseToStart The Selection.collapseToStart() method collapses the selection to the start of the first range ...
- Web/API/Selection/containsNode The Selection.containsNode() method indicates if the node is part of the selection.
- Web/API/Selection/deleteFromDocument The Selection.deleteFromDocument() method deletes the actual text being represented by a ...
- Web/API/Selection/extend The Selection.extend() method moves the focus of the selection to a specified point. The anchor ...
- Web/API/Selection/focusNode Selection.focusNode read-only property returns the Node, in which selection ends.
- Web/API/Selection/focusOffset The Selection.focusOffset read-only property returns the number of characters that the ...
- Web/API/Selection/getRangeAt The Selection.getRangeAt() method returns a range object representing one of the ranges ...
- Web/API/Selection/isCollapsed The Selection.isCollapsed read-only property returns a Boolean which indicates whether or not ...
- Web/API/Selection/modify The Selection.modify() method applies a change to the current selection or cursor position, ...
- Web/API/Selection/rangeCount The Selection.rangeCount read-only property returns the number of ranges in the selection.
- Web/API/Selection/removeAllRanges The Selection.removeAllRanges() method removes all ranges from the selection, leaving the ...
- Web/API/Selection/removeRange The Selection.removeRange() method removes a range from the selection.
- Web/API/Selection/selectAllChildren The Selection.selectAllChildren() method adds all the children of the specified node to the ...
- Web/API/Selection/toString The Selection.toString() method returns a string currently being represented by the selection ...
- Web/Events/selectionchange The selectionchange event implements the Event interface. You can use the properties and methods ...
- Web/Events/selectstart The selectstart event implements the Event interface. You can use the properties and methods ...