Skip to content

Instantly share code, notes, and snippets.

@anish2690
Created October 14, 2020 05:13
Show Gist options
  • Save anish2690/85dc35300b622462c0b83286757d334e to your computer and use it in GitHub Desktop.
Save anish2690/85dc35300b622462c0b83286757d334e to your computer and use it in GitHub Desktop.
copy to clipboard
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