Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created March 5, 2021 08:27
Show Gist options
  • Save sabesansathananthan/46145800221302862159558dd86db099 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/46145800221302862159558dd86db099 to your computer and use it in GitHub Desktop.
Clipboard Operation in JavaScript
document.addEventListener('paste', async (e) => {
e.preventDefault();
const text = await navigator.clipboard.readText();
console.log('Pasted text: ', text);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment