Skip to content

Instantly share code, notes, and snippets.

@lil5
Created May 18, 2020 10:14
Show Gist options
  • Save lil5/d7c56050e3010ae172e17971d61c5b93 to your computer and use it in GitHub Desktop.
Save lil5/d7c56050e3010ae172e17971d61c5b93 to your computer and use it in GitHub Desktop.
const copyToClipboard = str => {
const el = document.createElement('textarea');
el.value = str;
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