Skip to content

Instantly share code, notes, and snippets.

@chombazm
Created January 8, 2022 17:53
Show Gist options
  • Save chombazm/c0e4cf0c0481f8e7a9d094912a5bf066 to your computer and use it in GitHub Desktop.
Save chombazm/c0e4cf0c0481f8e7a9d094912a5bf066 to your computer and use it in GitHub Desktop.
copy text to clipboard
// console.log("thenxtlvls", 2022);
function copyContentToClipboard (content) {
console.log(content, "to be copied")
navigator.clipboard.writeText(content).then(function() {
alert("text copied to clipboard")
}, function() {
alert("Oops! Couldnt copy text to clipboard")
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment