A totally easy way for modern browsers to put something into clipboard.
$ npm i --save clip-it
<button>Copy as Text</button>
<button>Copy as HTML</button>
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'
}))
- 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)