Interface for manipulating and querying the current selected range
of nodes within the document.
@version 1.0
Returns the range at the specified index.
Collapses the selection to a single point, at the specified offset
in the given DOM node. When the selection is collapsed, and the content
is focused and editable, the caret will blink there.
parentNode | The given dom node where the selection will be set |
offset | Where in given dom node to place the selection (the offset into the given node) |
Extends the selection by moving the selection end to the specified node and offset,
preserving the selection begin position. The new selection end result will always
be from the anchorNode to the new focusNode, regardless of direction.
parentNode | The node where the selection will be extended to |
offset | Where in node to place the offset in the new selection end |
Collapses the whole selection to a single point at the start
of the current selection (irrespective of direction). If content
is focused and editable, the caret will blink there.
Collapses the whole selection to a single point at the end
of the current selection (irrespective of direction). If content
is focused and editable, the caret will blink there.
Indicates whether the node is part of the selection. If partlyContained
is set to PR_TRUE, the function returns true when some part of the node
is part of the selection. If partlyContained is set to PR_FALSE, the
function only returns true when the entire node is part of the selection.
Adds all children of the specified node to the selection.
parentNode | the parent of the children to be added to the selection. |
Adds a range to the current selection.
Removes a range from the current selection.
Removes all ranges from the current selection.
Deletes this selection from document the nodes belong to.
Returns the whole selection into a plain text string.
Modifies the selection. Note that the parameters are case-insensitive.
alter | can be one of { "move", "extend" } - "move" collapses the selection to the end of the selection and applies the movement direction/granularity to the collapsed selection. - "extend" leaves the start of the selection unchanged, and applies movement direction/granularity to the end of the selection. |
direction | can be one of { "forward", "backward", "left", "right" } |
granularity | can be one of { "character", "word", "line", "lineboundary" } |
NS_ERROR_NOT_IMPLEMENTED if the granularity is "sentence", "sentenceboundary", "paragraph", "paragraphboundary", or "documentboundary". Returns NS_ERROR_INVALID_ARG if alter, direction, or granularity has an unrecognized value. |
Returns the node in which the selection begins.
The offset within the (text) node where the selection begins.
Returns the node in which the selection ends.
The offset within the (text) node where the selection ends.
Indicates if the selection is collapsed or not.
Returns the number of ranges in the selection.