Skip to content

Instantly share code, notes, and snippets.

@pssubashps
Created April 26, 2018 09:34
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 pssubashps/77a87241086a1a0641de65054e9fa947 to your computer and use it in GitHub Desktop.
Save pssubashps/77a87241086a1a0641de65054e9fa947 to your computer and use it in GitHub Desktop.
Copy to clipboard
function copyToClipboard(text){
var dummy = document.createElement("input");
document.body.appendChild(dummy);
dummy.setAttribute('value', text);
dummy.select();
document.execCommand("copy");
document.body.removeChild(dummy);
}
copyToClipboard('Hello, World!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment