dom-selection v0.3.3
dom-selection 
A lightweight (1kb), cross-browser library for DOM selections and ranges. IE9+
Install
$ npm install --save dom-selectionMultiple module systems are included:
- CommonJS (
dist/dom-selection.js) - This is themain/default entry. Use as a regular Node module. - UMD (
dist/dom-selection.min.js) - This is exposed as theumd:mainentry. It's also minified & can be used in the browser. - ES6 (
dist/dom-selection.es.js) - This is exposed as themoduleentry. Easier for code-splitting bundlers like Rollup or Webpack.
Usage
This package is available as a UMD and a CommonJS module, so you may import it directly into your JavaScript:
const domSel = require('dom-selection');Or you may import it directly into your HTML markup:
<script src="dist/dom-selection.min.js"></script>
<script>
// the 'DOMSelection' global is now available
var range = DOMSelection.getRange();
</script>API
The parameter [sel] indicates that an existing Selection object may be provided. By default, the current, active Selection will be used if available.
getRange(sel)
Get a Selection's Range.
Returns: Range
setRange(saved, sel)
Restore a Range to a Selection.
saved
Type:
RangeThe
Rangeto apply.
getRect(sel)
Get a Selection's rectangular bounds.
Returns: Object or false
getNodes(sel)
Get all Nodes within a Selection.
Returns: Array
getHTML(sel)
Get the inner HTML content of a Selection.
Returns: String
isCollapsed(sel)
Is there a Selection active?
Returns: Boolean
collapseStart(sel)
Collapse a Selection to its beginning.
collapseEnd(sel)
Collapse a Selection to its endpoint.
isBackwards(sel)
Check if the direction of the Selection was RTL.
Returns: Boolean
isWithin(container, sel)
Is the Selection within given container Node?
Returns: Boolean
container
Type:
NodeThe DOM element to check.
forceWithin(container, sel)
Force/Restrict a Selection to the container & its children only.
container
Type:
NodeThe DOM element that should be the boundary.
expandToWord(sel)
Expand the Selection to include the full word that the Caret is (partially) within.
getCaretWord(sel)
Get the full word that the Caret is within.
Returns: String
snapSelected(sel)
Force the Selection to include entire words. Can be thought of as "snap to words". No partially-selected words will occur.
License
MIT © Luke Edwards