Skip to content

Instantly share code, notes, and snippets.

@Chalarangelo
Created February 20, 2018 10:38
Show Gist options
  • Save Chalarangelo/65320a1953388d0042829ac1fb989e33 to your computer and use it in GitHub Desktop.
Save Chalarangelo/65320a1953388d0042829ac1fb989e33 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