Skip to content

Instantly share code, notes, and snippets.

@danieldogeanu
Last active July 31, 2024 17:17
Re-enable pasting on input fields.

To re-enable pasting for input fields where paste is disabled, open the console and paste the following:

document.addEventListener('paste', (e) => e.stopImmediatePropagation(), true);

Enjoy! 😊

If this was useful, you can buy me a coffee here. Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment