Created
March 5, 2021 08:27
-
-
Save sabesansathananthan/46145800221302862159558dd86db099 to your computer and use it in GitHub Desktop.
Clipboard Operation in JavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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