Skip to content

Instantly share code, notes, and snippets.

@michaelwestphal
Created March 8, 2024 13:39
Show Gist options
  • Save michaelwestphal/b081847a0c03601813b6ccec5e9c2486 to your computer and use it in GitHub Desktop.
Save michaelwestphal/b081847a0c03601813b6ccec5e9c2486 to your computer and use it in GitHub Desktop.
Re-enable paste
//
// For when those pesky sites decide that you shouldn't be allowed to paste into an input...
//
document.addEventListener('paste', (e) => {
e.stopImmediatePropagation();
return true;
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment