copy.js - simple copy text to clipboard in the browser
Note: This post is over 9 years old. The information may be outdated.
Simple copy to clipboard. No Flash.
Install
You can get it on bower.
bower install copy --save
Or npm, too.
npm install copy-js --save
If you're not into package management, just [download a ZIP] file.
Setup
First, include the script located on the dist folder.
<script src="dist/copy.min.js"></script>
Or load it from CDN provider.
<script src="//cdn.rawgit.com/duyetdev/copy.js/master/dist/copy.min.js"></script>
Usage
Just copy:
copy('hello world.')
With callback
:
copy('hello world', function (err) {
if (err) console.log('Some thing went wrong!')
console.log('Copied!')
})
That's it!
Visit project source code here: https://github.com/duyet/copy.js