copy-text-to-clipboard
Copy text to the clipboard in modern browsers (0.2 kB)
Last updated 5 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm
$ cnpm install copy-text-to-clipboard 
SYNC missed versions from official npm registry.

copy-text-to-clipboard

Copy text to the clipboard in modern browsers (0.2 kB)

Try it out!

Comparison

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

Current Tags

  • 3.1.0                                ...           latest (2 years ago)

3 Versions

  • 3.1.0                                ...           2 years ago
  • 3.0.1                                ...           5 years ago
  • 2.2.0                                ...           5 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (2)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org