Skip to content

Instantly share code, notes, and snippets.

@kelvearagao
Created November 13, 2020 19:27
Show Gist options
  • Save kelvearagao/23ab27b1fa885e27c4865d322f92f662 to your computer and use it in GitHub Desktop.
Save kelvearagao/23ab27b1fa885e27c4865d322f92f662 to your computer and use it in GitHub Desktop.
receives data as an argument and copies it to the clipboard
const copyToClipboard = data => {
const el = document.createElement('textarea');
el.value = data;
el.setAttribute('readonly', '');
el.style.position = 'absolute';
el.style.left = '-9999px';
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