You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Seep
cd9b7fe8a8
|
1 year ago | |
---|---|---|
.. | ||
index.d.ts | 1 year ago | |
index.js | 1 year ago | |
license | 1 year ago | |
package.json | 1 year ago | |
readme.md | 1 year ago |
readme.md
copy-text-to-clipboard
Copy text to the clipboard in modern browsers (0.2 kB)
Comparison
- This module: 0.2 kB
clipboard.js
: 3.4 kB
Install
npm install copy-text-to-clipboard
Usage
import copy from 'copy-text-to-clipboard';
button.addEventListener('click', () => {
copy('🦄🌈');
});
API
copy(text, options?)
Copy text
to the clipboard.
Returns a boolean
of whether it succeeded to copy the text.
Must be called in response to a user gesture event, like click
or keyup
.
options
Type: object
target
Type: HTMLElement
Default: document.body
Specify a DOM element where the temporary, behind-the-scenes textarea
should be appended, in cases where you need to stay within a focus trap, like in a modal.
Related
- clipboardy - Access the system clipboard (copy/paste) in Node.js