Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created March 5, 2021 07:33
Show Gist options
  • Save sabesansathananthan/969fdeaa6c5d2b263ddc39de29303f21 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/969fdeaa6c5d2b263ddc39de29303f21 to your computer and use it in GitHub Desktop.
Clipboard Operation in JavaScript
const source = document.querySelector('.source');
source.addEventListener('copy', (event) => {
const selection = document.getSelection();
event.clipboardData.setData('text/plain', selection.toString().toUpperCase());
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment