Skip to content

Instantly share code, notes, and snippets.

@Richienb
Last active July 22, 2020 05:09
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 Richienb/d5cdaa63c90dd678bacac0939c561066 to your computer and use it in GitHub Desktop.
Save Richienb/d5cdaa63c90dd678bacac0939c561066 to your computer and use it in GitHub Desktop.
Synchronously copy text to the clipboard in browsers
function copyText(text) {
const copyElement = document.createElement("textarea")
document.querySelector("body").appendChild(copyElement)
copyElement.textContent = text
copyElement.select()
document.execCommand("copy")
document.querySelector("body").removeChild(copyElement)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment