clip-it
TypeScript icon, indicating that this package has built-in type declarations

0.2.6 • Public • Published

CLIP IT

A totally easy way for modern browsers to put something into clipboard.

build npm codecov license

Try it Out

Demo by Codepen

Installation

$ npm i --save clip-it

Usage

HTML

<button>Copy as Text</button>
<button>Copy as HTML</button>

JavaScript

import clipIt from 'clip-it'
 
const $btnCopyText = document.querySelector('button')
const $btnCopyHTML = document.querySelector('button')
 
$btnCopyText.onclick = e => clipIt('Hello World'))
 
$btnCopyHTML.onclick = e => clipIt('<span style="color: red;">Hello world!</span>', {
  contentType: 'text/html'
}))

ATTENTION

  • The clip-it API must be triggered in the same callstack with a trusted event.
  • Some browsers only supports to copy plain text. (e.g. iOS Safari)

Readme

Keywords

Package Sidebar

Install

npm i clip-it

Weekly Downloads

1

Version

0.2.6

License

MIT

Unpacked Size

10.3 kB

Total Files

16

Last publish

Collaborators

  • dafrok