Skip to content

Instantly share code, notes, and snippets.

@rndme
Created January 29, 2021 11:40
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 rndme/0847d056cfb979f610b2acb36f1e0bff to your computer and use it in GitHub Desktop.
Save rndme/0847d056cfb979f610b2acb36f1e0bff to your computer and use it in GitHub Desktop.
function setClipboard(text) {
return navigator.clipboard.write( [new ClipboardItem({['text/plain']: new Blob([text], { type:'text/plain'}) })]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment