Skip to content

Instantly share code, notes, and snippets.

@iam-medvedev
Created September 19, 2021 06:05
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 iam-medvedev/4e348ad00d32bd4efea9b6499facc429 to your computer and use it in GitHub Desktop.
Save iam-medvedev/4e348ad00d32bd4efea9b6499facc429 to your computer and use it in GitHub Desktop.
// https://www.w3.org/TR/clipboard-apis/#reading-from-clipboard
document.addEventListener('paste', (e) => {
const text = e.clipboardData.getData('text/plain');
const html = e.clipboardData.getData('text/html');
handlePaste();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment