install with command :
npm i @abasb75/selection-js
copyText()
used for copy selected text to user clipboard:
import slection from "selection-js";
...
<button onClick={e=>selection.copyText()}>Copy Selected Text</button>
...
copyStyledText()
used for copy selected text with style to user clipboard:
import slection from "selection-js";
...
<button onClick={e=>selection.copyStyledText()}>Copy Selected Text</button>
...
copyHTML()
used for getting copy of html of selected text to user clipboard:
import slection from "selection-js";
...
<button onClick={e=>selection.copyHTML()}>Copy HTML</button>
...
getContainer()
can be used to get the container element:
import slection from "selection-js";
...
const container = selection.getContainer();
...
Use getAnchorContainer()
to get the child of container
, which is the parent of anchorNode.
import slection from "selection-js";
...
const anchorContainer = selection.getAnchorContainer();
...
Use getFocusContainer()
to get the child of container
, which is the parent of focusNode.
import slection from "selection-js";
...
const anchorContainer = selection.getFocusContainer();
...
getClonedNodes()
gives a tree of the nodes of the selected part of the page. The nodes of the tree aren't linked to the DOM
import slection from "selection-js";
...
const clonedTree = selection.getClonedNodes();
...
getTree()
gives a tree of the nodes of the selected part of the page. The nodes of the tree are linked to the DOM
import slection from "selection-js";
...
const tree = selection.getTree();
...
getNodes()
gives an array of the nodes of the selected part of the page. The nodes of the tree are linked to the DOM
import slection from "selection-js";
...
const nodes = selection.getNodes();
...
asString()
returns a string of selected part of web page!
import slection from "selection-js";
...
const nodes = selection.asString();
// result: left-to-right or right-to-left
...
asHTML()
returns a string include html of selected part of web page!
import slection from "selection-js";
...
const nodes = selection.asHTML();
// result: <b><i><a href="#">left</a>-to-<a href="#">ri<span>ght</span></a></i></b>or<b><i>right-to-left</i></b>
...
caretPosition()
returns number of position of cursor (caret) in innerHTML
of container
import slection from "selection-js";
...
const position = selection.caretPosition();
...