Skip to content

Instantly share code, notes, and snippets.

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 CoolOppo/93152fa46e9439dd91f8 to your computer and use it in GitHub Desktop.
Save CoolOppo/93152fa46e9439dd91f8 to your computer and use it in GitHub Desktop.
function copyToClipboard(text) {
var copyDiv = document.createElement('div');
copyDiv.contentEditable = true;
document.body.appendChild(copyDiv);
copyDiv.innerHTML = text;
copyDiv.unselectable = "off";
copyDiv.focus();
document.execCommand('SelectAll');
document.execCommand("Copy", false, null);
document.body.removeChild(copyDiv);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment