Skip to content

Instantly share code, notes, and snippets.

@mohdovais
Created August 31, 2019 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohdovais/f9124c4ad23731a61543dbcee8a10f3e to your computer and use it in GitHub Desktop.
Save mohdovais/f9124c4ad23731a61543dbcee8a10f3e to your computer and use it in GitHub Desktop.
copy text to clipboard in browser
function copyToClipboard(text){
var textarea = document.createElement('textarea');
textarea.value = text;
document.body.appendChild(textarea);
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