zacharyprice / simpleJsCopy

:clipboard: A super small (~1kB) JS library for copying to the clipboard or selecting text and prompting the user. A full solution for all browsers and all devices.

Home Page:https://ryanpcmcquen.org/simpleJsCopy/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

simpleJsCopy 📋

Just include the library (v0.2.3, ~1kB!):

<script src="https://cdn.rawgit.com/ryanpcmcquen/simpleJsCopy/3639e551f1fb1b93821c70856dacce5f2318c37d/simpleJsCopy.min.js"></script>

https://cdn.rawgit.com/ryanpcmcquen/simpleJsCopy/3639e551f1fb1b93821c70856dacce5f2318c37d/simpleJsCopy.min.js

Then use the following elements:

  1. <textarea> with the class text-to-copy (can be readonly but not disabled)
  2. <button> with the class js-copy-btn

The library takes cares of the rest. :shipit:

📰 You don't have to write any JavaScript to use it!

=====

So what?! Where does it work?

Almost everywhere!

Desktop:

  • Chrome/Chromium 42+
  • Firefox 41+
  • Internet Explorer 9+
  • Opera 29+

Android:

  • Chrome 42+
  • Firefox 41+
What about other browsers?

Everywhere else (meaning iOS), it will select the text. The library detects iDevices and will change the inital button text to Select text (to avoid confusing the user). After clicking it will say either Now tap 'Copy' (iPhone) or Now tap the text, then 'Copy' (iPad), to account for the strange behavioral differences of these devices.

On desktop Safari (any version), the button will change to Press Command + C to copy.

On failure the button will say Please copy manually.

=====

⚠️ If you want your textarea to be invisible for some reason, use this CSS:

.text-to-copy {
  opacity: 0;
  position: absolute;
}

Because it will not work with display: none; or visibility: hidden;. 👍

Note that you should also supplement that CSS with something like this helper library, otherwise people on iOS will not be able to copy at all since Safari doesn't support cool stuff:

https://gist.github.com/ryanpcmcquen/1229119ffcf5098543c0

About

:clipboard: A super small (~1kB) JS library for copying to the clipboard or selecting text and prompting the user. A full solution for all browsers and all devices.

https://ryanpcmcquen.org/simpleJsCopy/

License:GNU General Public License v2.0


Languages

Language:JavaScript 87.7%Language:HTML 12.3%