Skip to content

Instantly share code, notes, and snippets.

@jgoslow
Created August 13, 2022 18:16
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 jgoslow/9e703ff9e4a5d277d6703082b8643a40 to your computer and use it in GitHub Desktop.
Save jgoslow/9e703ff9e4a5d277d6703082b8643a40 to your computer and use it in GitHub Desktop.
Clipboard JS Helper Functions
function copyInputValueToClipboard(input) {
input.select();
document.execCommand("copy");
console.log(`${input.value} copied to clipboard!`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment