Dafrok / clip-it

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

Home Page:https://dafrok.github.io/clip-it

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

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

https://dafrok.github.io/clip-it

License:MIT License


Languages

Language:JavaScript 100.0%