Socket
Book a DemoInstallSign in
Socket

@abasb75/selection-js

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@abasb75/selection-js

Library for work javascript text selection

latest
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

Installation :

install with command :

npm i @abasb75/selection-js

copy selected text

copyText() used for copy selected text to user clipboard: selection.js

import slection from "selection-js";
...
<button onClick={e=>selection.copyText()}>Copy Selected Text</button>
...

copy selected text with style

copyStyledText() used for copy selected text with style to user clipboard:

selection.js
import slection from "selection-js";
...
<button onClick={e=>selection.copyStyledText()}>Copy Selected Text</button>
...

copy selected text with style

copyHTML() used for getting copy of html of selected text to user clipboard:

selection.js
import slection from "selection-js";
...
<button onClick={e=>selection.copyHTML()}>Copy HTML</button>
...

Getting Container of selected text

getContainer() can be used to get the container element:

import slection from "selection-js";
...
const container = selection.getContainer();
...

getAnchorContainer

Use getAnchorContainer() to get the child of container, which is the parent of anchorNode.

import slection from "selection-js";
...
const anchorContainer = selection.getAnchorContainer();
...


getFocusContainer

Use getFocusContainer() to get the child of container, which is the parent of focusNode.

import slection from "selection-js";
...
const anchorContainer = selection.getFocusContainer();
...


getClonedNodes

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

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

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

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

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

caretPosition() returns number of position of cursor (caret) in innerHTML of container

import slection from "selection-js";
...
const position = selection.caretPosition();
...

selection.js

Keywords

selection

FAQs

Package last updated on 08 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts