Skip to content

Instantly share code, notes, and snippets.

@leihuagh
Forked from Chalarangelo/copyToClipboard.js
Created April 6, 2019 13:02
Show Gist options
  • Save leihuagh/126841572d0e6ce2cc11159145ca73f0 to your computer and use it in GitHub Desktop.
Save leihuagh/126841572d0e6ce2cc11159145ca73f0 to your computer and use it in GitHub Desktop.
const copyToClipboard = str => {
const el = document.createElement('textarea');
el.value = str;
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment