Skip to content

Instantly share code, notes, and snippets.

@JulaineScott
Created March 23, 2023 15:58
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 JulaineScott/dabd3283c978aa8e61cfd002919485ce to your computer and use it in GitHub Desktop.
Save JulaineScott/dabd3283c978aa8e61cfd002919485ce to your computer and use it in GitHub Desktop.
Copy To Clipboard
const input = document.querySelector('input');
const btn = document.querySelector('button');
btn.addEventListener('click', () => {
navigator.clipboard.writeText(input.value);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment