Skip to content

Instantly share code, notes, and snippets.

@alexrintt
Last active February 11, 2020 02:31
Show Gist options
  • Save alexrintt/f455c56aa685130e9dbf7c99e22afb38 to your computer and use it in GitHub Desktop.
Save alexrintt/f455c56aa685130e9dbf7c99e22afb38 to your computer and use it in GitHub Desktop.
export default function copyToClipboard(text) {
const textArea = document.createElement('textarea');
textArea.value = text;
textArea.style.position = 'fixed'; //avoid scrolling to bottom
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
document.execCommand('copy');
document.body.removeChild(textArea);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment